public LoadStopController(ILoadStopService service)
 {
     _service = service;
 }
Пример #2
0
 public LoadStopController(IMapper mapper, ILoadStopService service, IUserContext userContext)
 {
     _mapper  = mapper;
     _service = service;
     _user    = userContext;
 }