Пример #1
0
 public AjaxController(
     INomenclatureService _nomenclatureService,
     ICaseService _caseService,
     ICommonService _commonService,
     IUserContext _userContext,
     ICasePersonService _casePersonService,
     ICalendarService _calendarService,
     ICaseGroupService _caseGroupService,
     ICaseLoadIndexService _caseLoadIndexService,
     IEisppService _eisppService,
     ILogOperationService <ApplicationDbContext> _logOperation,
     ICdnService _cdnService)
 {
     nomenclatureService  = _nomenclatureService;
     caseService          = _caseService;
     commonService        = _commonService;
     userContext          = _userContext;
     logOperation         = _logOperation;
     calendarService      = _calendarService;
     casePersonService    = _casePersonService;
     caseGroupService     = _caseGroupService;
     caseLoadIndexService = _caseLoadIndexService;
     eisppService         = _eisppService;
     cdnService           = _cdnService;
 }
Пример #2
0
 public CaseGroupController(ICaseGroupService _service, INomenclatureService _nomService, ICommonService _commonService)
 {
     service       = _service;
     nomService    = _nomService;
     commonService = _commonService;
 }