示例#1
0
 public ProductService(DoggyFoodyDatabaseContext dbContext, IUserService userService, IProductFilter productFilter, IColumnService columnService)
 {
     _dbContext     = dbContext;
     _userService   = userService;
     _filter        = productFilter;
     _columnService = columnService;
 }
示例#2
0
 public ColumnService(DoggyFoodyDatabaseContext dbContext)
 {
     _dbContext = dbContext;
 }
 public AdvertisementService(DoggyFoodyDatabaseContext dbContext)
 {
     _dbContext = dbContext;
 }
示例#4
0
 public ManufacturerService(DoggyFoodyDatabaseContext dbContext)
 {
     _dbContext = dbContext;
 }
示例#5
0
 public UserService(DoggyFoodyDatabaseContext dbContext, IColumnService columnService)
 {
     _dbContext     = dbContext;
     _columnService = columnService;
 }