Exemplo n.º 1
0
 public StoreController(UserManager <Account> userManager, SignInManager <Account> signInManager,
                        IConfiguration configuration, JwtSettings jwtSettings, RoleManager <AppRole> roleManager,
                        IMapper mapper, StoreRepository storeRepository, PDVContext context, AccountStoreRepository accountStoreRepository)
 {
     _userManager            = userManager;
     _signInManager          = signInManager;
     _configuration          = configuration;
     _jwtSettings            = jwtSettings;
     _roleManager            = roleManager;
     _mapper                 = mapper;
     _storeRepository        = storeRepository;
     _context                = context;
     _accountStoreRepository = accountStoreRepository;
 }
Exemplo n.º 2
0
 public UserRepository(PDVContext context) : base(context)
 {
 }
Exemplo n.º 3
0
 public ProductRepository(PDVContext context) : base(context)
 {
 }
Exemplo n.º 4
0
 public PDVController(PDVContext context)
 {
     this.context = context;
 }
 public AccountStoreRepository(PDVContext context) : base(context)
 {
 }
Exemplo n.º 6
0
 public PDVRepository(PDVContext context)
 {
     this.context = context;
 }
Exemplo n.º 7
0
 public BaseRepository(PDVContext context)
 {
     _context = context;
     _dbSet   = _context.Set <TEntity>();
 }
Exemplo n.º 8
0
 public StoreRepository(PDVContext context) : base(context)
 {
 }
Exemplo n.º 9
0
 public ProductController(IMapper mapper, ProductRepository productRepository, PDVContext context)
 {
     _mapper            = mapper;
     _context           = context;
     _productRepository = productRepository;
 }
Exemplo n.º 10
0
 public PDVService(PDVContext context)
 {
     this.context = context;
 }