Example #1
0
 public PlantsController(
     IPlantsGroupService groupService,
     IPlantCrudService plantCrudService,
     IPlantInfoService plantInfoService,
     IHostingEnvironment env,
     TegridyDbContext dbContext)
 {
     _groupService     = groupService;
     _plantCrudService = plantCrudService;
     _plantInfoService = plantInfoService;
     _env = env;
 }
Example #2
0
 public PlantCrudService(TegridyDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #3
0
 public PlantsGroupService(TegridyDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public PlantsScheduledActionService(TegridyDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #5
0
 public PlantsRulesService(TegridyDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #6
0
 public UserAuthService(TegridyDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #7
0
 public PlantInfoService(TegridyDbContext dbContext)
 {
     _dbContext = dbContext;
 }