Esempio n. 1
0
 public CollaboratorService(INotesRepository noteRepository
                            , ICollaboratorRepository collaboratorRepository
                            , IMapper mapper
                            , IMqServices mqServices)
 {
     _noteRepository         = noteRepository;
     _collaboratorRepository = collaboratorRepository;
     _mapper     = mapper;
     _mqServices = mqServices;
 }
Esempio n. 2
0
 public OrderService(IOrderRepository repository
                     , IMqServices mqServices
                     , IEmailItemDetails details
                     , ICacheRepository cacheRepository)
 {
     _repository      = repository;
     _mqServices      = mqServices;
     _emailItems      = details;
     _cacheRepository = cacheRepository;
 }
Esempio n. 3
0
 public CartService(ICartRepository repository
                    , IOrderRepository orderRepository
                    , IMqServices mqServices
                    , IEmailItemDetails details
                    , ICacheRepository cacheRepository)
 {
     _repository      = repository;
     _orderRepository = orderRepository;
     _mqservice       = mqServices;
     _emailItems      = details;
     _cacheRepository = cacheRepository;
 }
Esempio n. 4
0
 public AccountService(IAccountRepository repository
                       , ITokenManager _tokenManager
                       , IMapper mapper
                       , IMqServices mqServices
                       , IConfiguration configuration)
 {
     _repository        = repository;
     this._tokenManager = _tokenManager;
     _mapper            = mapper;
     _mqServices        = mqServices;
     _configuration     = configuration;
 }
Esempio n. 5
0
 public UserService(IUserRepository repository
                    , IMapper mapper
                    , ITokenManager tokenManager
                    , IConfiguration configuration
                    , IMqServices mqServices
                    , IResponseCacheService caching)
 {
     _repository    = repository;
     _mapper        = mapper;
     _tokenManager  = tokenManager;
     _configuration = configuration;
     _mqServices    = mqServices;
     _caching       = caching;
 }