ProductService.cs 315 B

123456789101112131415161718192021
  1. 
  2. using Model;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BizService
  9. {
  10. public class ProductService : BaseService<Product>, IProductService
  11. {
  12. public ProductService()
  13. {
  14. }
  15. }
  16. }