public PlantsController( IPlantsGroupService groupService, IPlantCrudService plantCrudService, IPlantInfoService plantInfoService, IHostingEnvironment env, TegridyDbContext dbContext) { _groupService = groupService; _plantCrudService = plantCrudService; _plantInfoService = plantInfoService; _env = env; }
public PlantCrudService(TegridyDbContext dbContext) { _dbContext = dbContext; }
public PlantsGroupService(TegridyDbContext dbContext) { _dbContext = dbContext; }
public PlantsScheduledActionService(TegridyDbContext dbContext) { _dbContext = dbContext; }
public PlantsRulesService(TegridyDbContext dbContext) { _dbContext = dbContext; }
public UserAuthService(TegridyDbContext dbContext) { _dbContext = dbContext; }
public PlantInfoService(TegridyDbContext dbContext) { _dbContext = dbContext; }