Пример #1
0
 public CaseDeadlineService(
     ILogger <CaseDeadline> _logger,
     IRepository _repo,
     IUserContext _userContext,
     IUrlHelper _urlHelper,
     IWorkNotificationService _workNotificationService,
     IWorkingDaysService _workingDaysService,
     INomenclatureService _nomService)
 {
     logger                  = _logger;
     repo                    = _repo;
     userContext             = _userContext;
     urlHelper               = _urlHelper;
     workNotificationService = _workNotificationService;
     workingDaysService      = _workingDaysService;
     nomService              = _nomService;
 }
 public MyNotificationComponent(IWorkNotificationService _workNotificationService, IUserContext _userContext)
 {
     workNotificationService = _workNotificationService;
     userContext             = _userContext;
 }
Пример #3
0
 public WorkNotificationController(IWorkNotificationService _service)
 {
     service = _service;
 }