public ProductRepository(VerhuurContext context) { this.context = context; products = context.Products; }
//private Customer currentCustomer; //public Customer CurrenCustomer { get; set; } public CustomerRepository(VerhuurContext context) { this.context = context; this.customers = context.Customers; }
public CategoryRepository(VerhuurContext context) { this.context = context; categories = context.Categories; }