public void AddVendor(Vendor vendor)
 {
     using (var currentContext = new PizzaSericeContext())
     {
         currentContext.Vendors.Add(vendor);
         currentContext.SaveChanges();
     }
 }
Example #2
0
 public void CreateVendor(Vendor vendor)
 {
     VendorRepository.Instance.AddVendor(vendor);
 }