public AdminController(IRoleService roleService, IOrderService orderService, IMapper mapper, IMusicInstrumentService InstrumentService)
 {
     _roleService       = roleService;
     _orderService      = orderService;
     _InstrumentService = InstrumentService;
     _mapper            = mapper;
 }
Esempio n. 2
0
        /* private ApplicationSignInManager _signInManager;
         * private ApplicationUserManager _userManager;*/

        public ManageController(IApplicationUserService userService, IMusicianService musicianService, IClientService clientService, IMusicInstrumentService musicInstrumentService, IMapper mapper)
        {
            _userService       = userService;
            _musicianService   = musicianService;
            _clientService     = clientService;
            _InstrumentService = musicInstrumentService;
            _mapper            = mapper;
        }
Esempio n. 3
0
 public ClientController(IMusicInstrumentService instrumentService, IOrderService orderService, IMapper mapper, IApplicationUserService applicationUserService, IClientService clientService, IFileStorageService fileStorageService)
 {
     _InstrumentService      = instrumentService;
     _orderService           = orderService;
     _mapper                 = mapper;
     _applicationUserService = applicationUserService;
     _ClientService          = clientService;
     _fileStorageService     = fileStorageService;
 }
Esempio n. 4
0
 public MusicianController(IMusicInstrumentService instrumentService, IOrderService orderService, IMapper mapper, IApplicationUserService applicationUserService, IFileStorageService fileStorageService, IMusicianService musicianService)
 {
     s_logger = LogManager.GetCurrentClassLogger();
     _musicInstrumentService = instrumentService;
     _orderService           = orderService;
     _mapper = mapper;
     _applicationUserService = applicationUserService;
     _fileStorageService     = fileStorageService;
     _musicianService        = musicianService;
 }