123456789101112131415161718192021 |
-
- using Model;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace BizService
- {
- public class ProductService : BaseService<Product>, IProductService
- {
-
- public ProductService()
- {
-
- }
- }
- }
|