public SharedGovernorController(
     ICachedLookupService cachedLookupService,
     IGovernorsReadService governorsReadService,
     IGovernorsWriteService governorsWriteService,
     LayoutHelper layoutHelper)
 {
     _cachedLookupService   = cachedLookupService;
     _governorsReadService  = governorsReadService;
     _governorsWriteService = governorsWriteService;
     _layoutHelper          = layoutHelper;
 }
示例#2
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;
 }
 public GovernorsBulkUpdateController(IGovernorsWriteService governorsWriteService, IGovernorsReadService governorsReadService)
 {
     _governorsWriteService = governorsWriteService;
     _governorsReadService  = governorsReadService;
 }