Ejemplo n.º 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;
 }
 public BeehiveHelperController(
     IBeehiveHelperService beehiveHelperService,
     IBeehiveService beehiveService,
     UserManager <ApplicationUser> userManager)
 {
     this.beehiveHelperService = beehiveHelperService;
     this.beehiveService       = beehiveService;
     this.userManager          = userManager;
 }
 public BeehiveNoteController(
     UserManager <ApplicationUser> userManager,
     IBeehiveNoteService beehiveNoteService,
     IBeehiveHelperService beehiveHelperServic,
     IBeehiveService beehiveService)
 {
     this.userManager         = userManager;
     this.beehiveNoteService  = beehiveNoteService;
     this.beehiveHelperServic = beehiveHelperServic;
     this.beehiveService      = beehiveService;
 }
Ejemplo n.º 4
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;
 }
Ejemplo n.º 5
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;
 }
Ejemplo n.º 6
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;
 }
Ejemplo n.º 7
0
 public ApiaryHelperService(
     IRepository <ApiaryHelper> apiaryHelperRepository,
     IRepository <BeehiveHelper> beehiveHelperRepository,
     IRepository <QueenHelper> queenHelperRepository,
     IDeletableEntityRepository <Beehive> beeheiveRepository,
     IBeehiveHelperService beehiveHelperService,
     IQueenHelperService queenHelperService,
     IRepository <Apiary> apiaryRepository,
     UserManager <ApplicationUser> userManager)
 {
     this.apiaryHelperRepository  = apiaryHelperRepository;
     this.beehiveHelperRepository = beehiveHelperRepository;
     this.queenHelperRepository   = queenHelperRepository;
     this.beeheiveRepository      = beeheiveRepository;
     this.beehiveHelperService    = beehiveHelperService;
     this.queenHelperService      = queenHelperService;
     this.apiaryRepository        = apiaryRepository;
     this.userManager             = userManager;
 }
Ejemplo n.º 8
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;
 }
Ejemplo n.º 9
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;
 }