Ejemplo n.º 1
0
 public ExportController(
     IExportService exportService,
     ISpecieCategoryAppService specieCategoryAppService,
     ISpecieAppService specieAppService,
     IStationAppService stationAppService,
     IApplicantService applicantService,
     IUserAppService userAppService,
     IDealerAppService dealerAppService,
     IFinancialYearAppService financialYearAppService
     )
 {
     _exportService            = exportService;
     _specieCategoryAppService = specieCategoryAppService;
     _specieAppService         = specieAppService;
     _stationAppService        = stationAppService;
     _applicantService         = applicantService;
     _userAppService           = userAppService;
     _dealerAppService         = dealerAppService;
     _financialYearAppService  = financialYearAppService;
 }
Ejemplo n.º 2
0
 public SpeciesController(ISpecieCategoryAppService specieCategoryAppService, ISpecieAppService specieAppService)
 {
     _specieCategoryAppService = specieCategoryAppService;
     _specieAppService         = specieAppService;
 }
Ejemplo n.º 3
0
 public SpecieController(ISpecieAppService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }