Exemplo n.º 1
0
 public AccountController(CMSShoppingContext db, IMapper mapper, IConfiguration configuration, IAzureBlobService azureBlobService)
 {
     _db               = db;
     _mapper           = mapper;
     _configuration    = configuration;
     _azureBlobService = azureBlobService;
 }
Exemplo n.º 2
0
 public Authentication(CMSShoppingContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
     //_passwordHasher = passwordHasher;
 }
Exemplo n.º 3
0
 public InventoryController(CMSShoppingContext db)
 {
     _db = db;
 }