Beispiel #1
0
 public UserAppService(IAllergieDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #2
0
 public FoodFactAppService(IAllergieDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #3
0
 public ProductAppService(IAllergieDbContext dbContext, IAllergyAppService allergyAppService, IUserAppService userAppService)
 {
     _dbContext         = dbContext;
     _allergyAppService = allergyAppService;
     _userAppService    = userAppService;
 }
 public NewsAppService(IAllergieDbContext dbContext)
 {
     _dbContext = dbContext;
 }