public SharedGovernorController(
     ICachedLookupService cachedLookupService,
     IGovernorsReadService governorsReadService,
     IGovernorsWriteService governorsWriteService,
     LayoutHelper layoutHelper)
 {
     _cachedLookupService   = cachedLookupService;
     _governorsReadService  = governorsReadService;
     _governorsWriteService = governorsWriteService;
     _layoutHelper          = layoutHelper;
 }
Ejemplo n.º 2
0
 public GovernorSearchController(IGovernorDownloadService governorDownloadService,
                                 IGovernorsReadService governorsReadService,
                                 ICachedLookupService cachedLookupService,
                                 IGroupReadService groupReadService,
                                 IEstablishmentReadService establishmentReadService)
 {
     _governorDownloadService  = governorDownloadService;
     _governorsReadService     = governorsReadService;
     _cachedLookupService      = cachedLookupService;
     _establishmentReadService = establishmentReadService;
     _groupReadService         = groupReadService;
 }
Ejemplo n.º 3
0
 public GovernorController(
     IGovernorsReadService governorsReadService,
     NomenclatureService nomenclatureService,
     ICachedLookupService cachedLookupService,
     IGovernorsWriteService governorsWriteService,
     IGroupReadService groupReadService,
     IEstablishmentReadService establishmentReadService,
     ILayoutHelper layoutHelper)
 {
     _governorsReadService     = governorsReadService;
     _nomenclatureService      = nomenclatureService;
     _cachedLookupService      = cachedLookupService;
     _governorsWriteService    = governorsWriteService;
     _groupReadService         = groupReadService;
     _establishmentReadService = establishmentReadService;
     _layoutHelper             = layoutHelper;
 }
Ejemplo n.º 4
0
 public GroupController(
     ICachedLookupService cachedLookupService,
     ISecurityService securityService,
     IGroupReadService groupReadService,
     IEstablishmentReadService establishmentReadService,
     IGroupsWriteService groupWriteService,
     ICompaniesHouseService companiesHouseService,
     NomenclatureService nomenclatureService,
     IGovernorsReadService governorsReadApiService)
 {
     _lookup                   = cachedLookupService;
     _securityService          = securityService;
     _groupReadService         = groupReadService;
     _establishmentReadService = establishmentReadService;
     _groupWriteService        = groupWriteService;
     _companiesHouseService    = companiesHouseService;
     _nomenclatureService      = nomenclatureService;
     _governorsReadService     = governorsReadApiService;
 }
 public GovernorsBulkUpdateController(IGovernorsWriteService governorsWriteService, IGovernorsReadService governorsReadService)
 {
     _governorsWriteService = governorsWriteService;
     _governorsReadService  = governorsReadService;
 }