コード例 #1
0
 public QueenBeesController(
     IQueenBeeService queenBeeService,
     IBeehiveService beehiveService)
 {
     this.queenBeeService = queenBeeService;
     this.beehiveService  = beehiveService;
 }
コード例 #2
0
 public BeehiveController(
     IApiaryService apiaryService,
     IApiaryHelperService apiaryHelperService,
     UserManager <ApplicationUser> userManager,
     IBeehiveHelperService beehiveHelperService,
     IBeehiveService beehiveService,
     IQueenService queenService,
     IHarvestService harvestService,
     ITreatmentService treatmentService,
     IInspectionService inspectionService,
     IQueenHelperService queenHelperService,
     IExcelExportService excelExportService,
     ITemporaryApiaryBeehiveService temporaryApiaryBeehiveService,
     IBeehiveMarkFlagService beehiveMarkFlagService)
 {
     this.apiaryService                 = apiaryService;
     this.apiaryHelperService           = apiaryHelperService;
     this.userManager                   = userManager;
     this.beehiveHelperService          = beehiveHelperService;
     this.beehiveService                = beehiveService;
     this.queenService                  = queenService;
     this.harvestService                = harvestService;
     this.treatmentService              = treatmentService;
     this.inspectionService             = inspectionService;
     this.queenHelperService            = queenHelperService;
     this.excelExportService            = excelExportService;
     this.temporaryApiaryBeehiveService = temporaryApiaryBeehiveService;
     this.beehiveMarkFlagService        = beehiveMarkFlagService;
 }
コード例 #3
0
 public InspectionsController(
     IInspectionService inspectionService,
     IBeehiveService beehiveService)
 {
     this.inspectionService = inspectionService;
     this.beehiveService    = beehiveService;
 }
コード例 #4
0
 public InspectionService(
     ApiaryDiaryDbContext db,
     IBeehiveService beehiveService)
 {
     this.db             = db;
     this.beehiveService = beehiveService;
 }
コード例 #5
0
 public QueenBeeService(
     ApiaryDiaryDbContext db,
     IBeehiveService beehiveService)
 {
     this.db             = db;
     this.beehiveService = beehiveService;
 }
コード例 #6
0
 public BeehiveDiaryController(
     IBeehiveDiaryService beehiveDiaryService,
     UserManager <ApplicationUser> userManager,
     IBeehiveService beehiveService)
 {
     this.beehiveDiaryService = beehiveDiaryService;
     this.userManager         = userManager;
     this.beehiveService      = beehiveService;
 }
コード例 #7
0
 public BeehiveMarkFlagController(
     IBeehiveMarkFlagService beehiveMarkFlagService,
     IBeehiveService beehiveService,
     IApiaryService apiaryService)
 {
     this.beehiveMarkFlagService = beehiveMarkFlagService;
     this.beehiveService         = beehiveService;
     this.apiaryService          = apiaryService;
 }
コード例 #8
0
 public BeehivesController(
     IBeehiveService beehiveService,
     IApiaryService apiaryService,
     UserManager <IdentityUser> userManager)
 {
     this.beehiveService = beehiveService;
     this.apiaryService  = apiaryService;
     this.userManager    = userManager;
 }
コード例 #9
0
 public QueenHelperController(
     IQueenHelperService queenHelperService,
     IBeehiveService beehiveService,
     UserManager <ApplicationUser> userManager)
 {
     this.queenHelperService = queenHelperService;
     this.beehiveService     = beehiveService;
     this.userManager        = userManager;
 }
コード例 #10
0
 public ApiariesController(
     IApiaryService apiaryService,
     IBeehiveService beehiveService,
     ILocationInfoService locationInfoService,
     UserManager <IdentityUser> userManager)
 {
     this.apiaryService       = apiaryService;
     this.beehiveService      = beehiveService;
     this.locationInfoService = locationInfoService;
     this.userManager         = userManager;
 }
コード例 #11
0
 public BeehiveNoteController(
     UserManager <ApplicationUser> userManager,
     IBeehiveNoteService beehiveNoteService,
     IBeehiveHelperService beehiveHelperServic,
     IBeehiveService beehiveService)
 {
     this.userManager         = userManager;
     this.beehiveNoteService  = beehiveNoteService;
     this.beehiveHelperServic = beehiveHelperServic;
     this.beehiveService      = beehiveService;
 }
コード例 #12
0
 public DashboardController(
     IApiaryService apiaryService,
     IBeehiveService beehiveService,
     IApiaryHelperService apiaryHelperService,
     IUserService userService)
 {
     this.apiaryService       = apiaryService;
     this.beehiveService      = beehiveService;
     this.apiaryHelperService = apiaryHelperService;
     this.userService         = userService;
 }
コード例 #13
0
 public HarvestController(
     UserManager<ApplicationUser> userManager,
     IHarvestService harvestService,
     IApiaryService apiaryService,
     IBeehiveService beehiveService,
     IExcelExportService excelExportService,
     IBeehiveHelperService beehiveHelperService)
 {
     this.userManager = userManager;
     this.harvestService = harvestService;
     this.apiaryService = apiaryService;
     this.beehiveService = beehiveService;
     this.excelExportService = excelExportService;
     this.beehiveHelperService = beehiveHelperService;
 }
コード例 #14
0
 public TreatmentController(
     UserManager <ApplicationUser> userManager,
     ITreatmentService treatmentService,
     IApiaryService apiaryService,
     IBeehiveService beehiveService,
     IExcelExportService excelExportService,
     IBeehiveHelperService beehiveHelperService)
 {
     this.userManager          = userManager;
     this.treatmentService     = treatmentService;
     this.apiaryService        = apiaryService;
     this.beehiveService       = beehiveService;
     this.excelExportService   = excelExportService;
     this.beehiveHelperService = beehiveHelperService;
 }
コード例 #15
0
 public ExcelExportService(
     IApiaryService apiaryService,
     IBeehiveService beehiveService,
     IHarvestService harvestService,
     IInspectionService inspectionService,
     ITreatmentService treatmentService,
     IEnumerationMethodsService enumerationMethodsService)
 {
     this.apiaryService             = apiaryService;
     this.beehiveService            = beehiveService;
     this.harvestService            = harvestService;
     this.inspectionService         = inspectionService;
     this.treatmentService          = treatmentService;
     this.enumerationMethodsService = enumerationMethodsService;
 }
コード例 #16
0
 public InspectionController(
     IInspectionService inspectionService,
     IBeehiveService beehiveService,
     IApiaryService apiaryService,
     IForecastService forecastService,
     IConfiguration configuration,
     IExcelExportService excelExportService,
     IBeehiveHelperService beehiveHelperService,
     UserManager <ApplicationUser> userManager)
 {
     this.inspectionService    = inspectionService;
     this.beehiveService       = beehiveService;
     this.apiaryService        = apiaryService;
     this.forecastService      = forecastService;
     this.configuration        = configuration;
     this.excelExportService   = excelExportService;
     this.beehiveHelperService = beehiveHelperService;
     this.userManager          = userManager;
 }
コード例 #17
0
 public ApiaryService(
     IDeletableEntityRepository <Apiary> apiaryRepository,
     IDeletableEntityRepository <Beehive> beehiveRepository,
     IDeletableEntityRepository <Queen> queenRepository,
     IRepository <ApiaryHelper> apiaryHelpersReposiitory,
     IRepository <BeehiveHelper> beehiveHelpersReposiitory,
     IRepository <QueenHelper> queenHelpersReposiitory,
     IBeehiveService beehiveService,
     IApiaryDiaryService apiaryDiaryService,
     IRepository <ApiaryDiary> apiaryDiaryRepository)
 {
     this.apiaryRepository          = apiaryRepository;
     this.beehiveRepository         = beehiveRepository;
     this.queenRepository           = queenRepository;
     this.apiaryHelpersReposiitory  = apiaryHelpersReposiitory;
     this.beehiveHelpersReposiitory = beehiveHelpersReposiitory;
     this.queenHelpersReposiitory   = queenHelpersReposiitory;
     this.beehiveService            = beehiveService;
     this.apiaryDiaryService        = apiaryDiaryService;
     this.apiaryDiaryRepository     = apiaryDiaryRepository;
 }
コード例 #18
0
 public ApiaryController(
     UserManager <ApplicationUser> userManager,
     IApiaryService apiaryService,
     IBeehiveService beehiveService,
     IApiaryNumberService apiaryNumberService,
     IConfiguration configuration,
     IForecastService forecastService,
     IApiaryHelperService apiaryHelperService,
     IBeehiveHelperService beehiveHelperService,
     ITemporaryApiaryBeehiveService temporaryApiaryBeehiveService,
     IExcelExportService excelExportService)
 {
     this.userManager                   = userManager;
     this.apiaryService                 = apiaryService;
     this.beehiveService                = beehiveService;
     this.apiaryNumberService           = apiaryNumberService;
     this.configuration                 = configuration;
     this.forecastService               = forecastService;
     this.apiaryHelperService           = apiaryHelperService;
     this.beehiveHelperService          = beehiveHelperService;
     this.temporaryApiaryBeehiveService = temporaryApiaryBeehiveService;
     this.excelExportService            = excelExportService;
 }
コード例 #19
0
 public HomeController(
     UserManager <ApplicationUser> userManager,
     IApiaryService apiaryService,
     IBeehiveService beehiveService,
     IQueenService queenService,
     ITreatmentService treatmentService,
     IInspectionService inspectionService,
     IHarvestService harvestService,
     IQuickChartService quickChartService,
     IEmailSender emailSender,
     IConfiguration configuration)
 {
     this.userManager       = userManager;
     this.apiaryService     = apiaryService;
     this.beehiveService    = beehiveService;
     this.queenService      = queenService;
     this.treatmentService  = treatmentService;
     this.inspectionService = inspectionService;
     this.harvestService    = harvestService;
     this.quickChartService = quickChartService;
     this.emailSender       = emailSender;
     this.configuration     = configuration;
 }
コード例 #20
0
 public BeeGardensController(IBeeGardenService beeGardenService, IBeehiveService beehiveService)
 {
     _beeGardenService = beeGardenService;
     _beehiveService   = beehiveService;
 }
コード例 #21
0
 public BeehiveController(IBeehiveService beehiveService)
 {
     _beehiveService = beehiveService;
 }
コード例 #22
0
 public BeehivesController(IBeehiveService beehiveService, IStatisticService statisticService)
 {
     _beehiveService   = beehiveService;
     _statisticService = statisticService;
 }