Example #1
0
 public void CreateCustomer(Customer customer)
 {
     _context.Add(customer);
 }
Example #2
0
 public void CreateQuote(Quote quote)
 {
     _context.Add(quote);
 }