public AmendmentService(IAmendmentRepository repository, IUnitOfWork unitOfWork, IClientNotifier clientNotifier, IScreenControlService screenControlService
                         , IUserService userService) : base(repository, unitOfWork)
 {
     _repository           = repository;
     _unitOfWork           = unitOfWork;
     _clientNotifier       = clientNotifier;
     _screenControlService = screenControlService;
     _userService          = userService;
 }
Beispiel #2
0
 public AmendmentHub(IScreenControlService screenControlService, IAmendmentService amendmentService, ISystemSettingService systemSettingService, IMapper mapper) : base(systemSettingService)
 {
     _screenControlService = screenControlService;
     _amendmentService     = amendmentService;
     _mapper = mapper;
 }
 public ScreenControlController(IScreenControlService screenControlService, IAmendmentService amendmentService)
 {
     _screenControlService = screenControlService;
     _amendmentService     = amendmentService;
 }