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; }
public UserRepository(PDVContext context) : base(context) { }
public ProductRepository(PDVContext context) : base(context) { }
public PDVController(PDVContext context) { this.context = context; }
public AccountStoreRepository(PDVContext context) : base(context) { }
public PDVRepository(PDVContext context) { this.context = context; }
public BaseRepository(PDVContext context) { _context = context; _dbSet = _context.Set <TEntity>(); }
public StoreRepository(PDVContext context) : base(context) { }
public ProductController(IMapper mapper, ProductRepository productRepository, PDVContext context) { _mapper = mapper; _context = context; _productRepository = productRepository; }
public PDVService(PDVContext context) { this.context = context; }