コード例 #1
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;
 }
コード例 #2
0
 public ApiaryNoteController(
     UserManager <ApplicationUser> userManager,
     IApiaryNoteService apiaryNoteService,
     IApiaryHelperService apiaryHelperService,
     IApiaryService apiaryService)
 {
     this.userManager         = userManager;
     this.apiaryNoteService   = apiaryNoteService;
     this.apiaryHelperService = apiaryHelperService;
     this.apiaryService       = apiaryService;
 }
コード例 #3
0
 public DashboardController(
     IApiaryService apiaryService,
     IBeehiveService beehiveService,
     IApiaryHelperService apiaryHelperService,
     IUserService userService)
 {
     this.apiaryService       = apiaryService;
     this.beehiveService      = beehiveService;
     this.apiaryHelperService = apiaryHelperService;
     this.userService         = userService;
 }
コード例 #4
0
 public ApiaryHelperController(
     UserManager <ApplicationUser> userManager,
     IApiaryService apiaryService,
     IApiaryHelperService apiaryHelperService,
     IEmailSender emailSender,
     IConfiguration configuration)
 {
     this.userManager         = userManager;
     this.apiaryService       = apiaryService;
     this.apiaryHelperService = apiaryHelperService;
     this.emailSender         = emailSender;
     this.configuration       = configuration;
 }
コード例 #5
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;
 }
コード例 #6
0
 public ApiaryHelperController(IApiaryHelperService apiaryHelperService)
 {
     this.apiaryHelperService = apiaryHelperService;
 }