public Product AddProduct(Product newProduct) { _context.Products.Add(_mapper.ParseProduct(newProduct)); _context.SaveChanges(); return(newProduct); }
public void AddOrderItem(OrderItem newOrderItem) { _context.Orderitems.Add(_mapper.ParseOrderItem(newOrderItem)); _context.SaveChanges(); }
public CartProducts AddCartProduct(CartProducts newCartProduct) { _context.Cartproducts.Add(_mapper.ParseCartProduct(newCartProduct)); _context.SaveChanges(); return(newCartProduct); }
public Cart AddCart(Cart newCart) { _context.Carts.Add(_mapper.ParseCart(newCart)); _context.SaveChanges(); return(newCart); }
public Order AddOrder(Order newOrder) { _context.Orders.Add(_mapper.ParseOrder(newOrder)); _context.SaveChanges(); return(newOrder); }
public Model.Customer AddCustomer(Model.Customer newCustomer) { _context.Customers.Add(_mapper.ParseCustomer(newCustomer)); _context.SaveChanges(); return(newCustomer); }
public Inventory AddInventory(Inventory newInventory) { _context.Inventories.Add(_mapper.ParseInventory(newInventory)); _context.SaveChanges(); return(newInventory); }