コード例 #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 BeehiveService(
     ApiaryDiaryDbContext db,
     IApiaryService apiaryService)
 {
     this.db            = db;
     this.apiaryService = apiaryService;
 }
コード例 #3
0
 public BeehiveMarkFlagController(
     IBeehiveMarkFlagService beehiveMarkFlagService,
     IBeehiveService beehiveService,
     IApiaryService apiaryService)
 {
     this.beehiveMarkFlagService = beehiveMarkFlagService;
     this.beehiveService         = beehiveService;
     this.apiaryService          = apiaryService;
 }
コード例 #4
0
 public BeehivesController(
     IBeehiveService beehiveService,
     IApiaryService apiaryService,
     UserManager <IdentityUser> userManager)
 {
     this.beehiveService = beehiveService;
     this.apiaryService  = apiaryService;
     this.userManager    = userManager;
 }
コード例 #5
0
 public LocationsController(
     ILocationInfoService locationInfoService,
     IApiaryService apiaryService,
     UserManager <IdentityUser> userManager)
 {
     this.locationInfoService = locationInfoService;
     this.apiaryService       = apiaryService;
     this.userManager         = userManager;
 }
コード例 #6
0
 public ApiaryDiaryController(
     IApiaryDiaryService apiaryDiaryService,
     UserManager <ApplicationUser> userManager,
     IApiaryService apiaryService)
 {
     this.apiaryDiaryService = apiaryDiaryService;
     this.userManager        = userManager;
     this.apiaryService      = apiaryService;
 }
コード例 #7
0
 public ApiaryNoteController(
     UserManager <ApplicationUser> userManager,
     IApiaryNoteService apiaryNoteService,
     IApiaryHelperService apiaryHelperService,
     IApiaryService apiaryService)
 {
     this.userManager         = userManager;
     this.apiaryNoteService   = apiaryNoteService;
     this.apiaryHelperService = apiaryHelperService;
     this.apiaryService       = apiaryService;
 }
コード例 #8
0
 public DashboardController(
     IApiaryService apiaryService,
     IBeehiveService beehiveService,
     IApiaryHelperService apiaryHelperService,
     IUserService userService)
 {
     this.apiaryService       = apiaryService;
     this.beehiveService      = beehiveService;
     this.apiaryHelperService = apiaryHelperService;
     this.userService         = userService;
 }
コード例 #9
0
 public ApiariesController(
     IApiaryService apiaryService,
     IBeehiveService beehiveService,
     ILocationInfoService locationInfoService,
     UserManager <IdentityUser> userManager)
 {
     this.apiaryService       = apiaryService;
     this.beehiveService      = beehiveService;
     this.locationInfoService = locationInfoService;
     this.userManager         = userManager;
 }
コード例 #10
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;
 }
コード例 #11
0
 public QueenController(
     IQueenService queenService,
     IApiaryService apiaryService,
     IBeehiveService beehiveService,
     IQueenHelperService queenHelperService,
     IBeehiveHelperService beehiveHelperService,
     UserManager <ApplicationUser> userManager)
 {
     this.queenService         = queenService;
     this.apiaryService        = apiaryService;
     this.beehiveService       = beehiveService;
     this.queenHelperService   = queenHelperService;
     this.beehiveHelperService = beehiveHelperService;
     this.userManager          = userManager;
 }
コード例 #12
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;
 }
コード例 #13
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;
 }
コード例 #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 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;
 }
コード例 #16
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;
 }
コード例 #17
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;
 }
コード例 #18
0
 public ApiaryController(IApiaryService apiaryService)
 {
     this.apiaryService = apiaryService;
 }