public FeedbackController(
     IEnumerationMethodsService enumerationMethodsService,
     IFeedbackService feedbackService,
     UserManager <ApplicationUser> userManager)
 {
     this.enumerationMethodsService = enumerationMethodsService;
     this.feedbackService           = feedbackService;
     this.userManager = userManager;
 }
示例#2
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;
 }