Example #1
0
 public CartLineServices(ICartLineRepo repo)
 {
     this.repo = repo;
 }
 public CartLineController(ICartLineRepo repo, IOrderRepo repoOrder)
 {
     _repo      = repo;
     _repoOrder = repoOrder;
 }
 public ShoppingCartDALTests()
 {
     _cartLineRepo = new CartLineRepo(Context, new ProductRepo(Context));
     _orderRepo    = new OrderRepo(Context);
     LoadDatabase();
 }