コード例 #1
0
ファイル: ProductService.cs プロジェクト: jbarczyk/DoggyFoody
 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;
 }