Exemplo n.º 1
0
 public ProductService(DoggyFoodyDatabaseContext dbContext, IUserService userService, IProductFilter productFilter, IColumnService columnService)
 {
     _dbContext     = dbContext;
     _userService   = userService;
     _filter        = productFilter;
     _columnService = columnService;
 }
Exemplo n.º 2
0
 public ColumnService(DoggyFoodyDatabaseContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 3
0
 public AdvertisementService(DoggyFoodyDatabaseContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 4
0
 public ManufacturerService(DoggyFoodyDatabaseContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 5
0
 public UserService(DoggyFoodyDatabaseContext dbContext, IColumnService columnService)
 {
     _dbContext     = dbContext;
     _columnService = columnService;
 }