public PurchaseRepository(SnacksStoreContext context) : base(context) { }
public UserRepository(SnacksStoreContext context, IOptions <AppSettings> appSettings) : base(context) { _appSettings = appSettings.Value; }
public ProductRepository(SnacksStoreContext context) : base(context) { }
public RolRepository(SnacksStoreContext context) : base(context) { }
public Repository(SnacksStoreContext context) { _context = context; }