public IndentsController(UserViewModel currentUserConfig, IIndentService indentService, IMFBService mfbService)
     : base(currentUserConfig)
 {
     _indentService = indentService;
     _mfbService    = mfbService;
     _currentUser   = currentUserConfig;
 }
 public IndentController(IIndentService indentService, IExecutorService executorService, IMapper mapper)
 {
     _indentService   = indentService;
     _executorService = executorService;
     _mapper          = mapper;
 }
 public IndentsController(IIndentService indentService)
 {
     _indentService = indentService;
 }
Example #4
0
 public IndentController(IIndentService service)
 {
     _indentService = service;
 }