예제 #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;
 }
예제 #3
0
 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;
 }