public CustomerManager(TechnicalServiceContext databaseContex, IMapper mapper, IDistributedCache disributedCache)
 {
     _databaseContex   = databaseContex;
     _mapper           = mapper;
     _distributedCache = disributedCache;
 }
Ejemplo n.º 2
0
 public ManagerService(TechnicalServiceContext databaseContex, IDistributedCache distributedCache)
 {
     _databaseContex   = databaseContex;
     _distributedCache = distributedCache;
 }
 public AccountController(TechnicalServiceContext databaseContext)
 {
     _databaseContext = databaseContext;
 }