public System.Int32 Delete(Research.Services.Northwind.NorthwindDataSetEntities.Supplier entity)
 {
     var row = entity.AsDataRow();
     return m_Adapter.Delete(row.SupplierID, row.CompanyName, row.ContactName, row.ContactTitle, row.Address, row.City, row.Region, row.PostalCode, row.Country, row.Phone, row.Fax);
 }
 public System.Int32 Delete(Research.Services.Northwind.NorthwindDataSetEntities.Shipper entity)
 {
     var row = entity.AsDataRow();
     return m_Adapter.Delete(row.ShipperID, row.CompanyName, row.Phone);
 }
 public System.Int32 Update(Research.Services.Northwind.NorthwindDataSetEntities.Shipper entity)
 {
     return m_Adapter.Update(entity.AsDataRow());
 }
 public System.Int32 Delete(Research.Services.Northwind.NorthwindDataSetEntities.Product entity)
 {
     var row = entity.AsDataRow();
     return m_Adapter.Delete(row.ProductID, row.ProductName, row.SupplierID, row.CategoryID, row.QuantityPerUnit, row.UnitPrice, row.UnitsInStock, row.UnitsOnOrder, row.ReorderLevel, row.Discontinued);
 }
 public System.Int32 Delete(Research.Services.Northwind.NorthwindDataSetEntities.Order entity)
 {
     var row = entity.AsDataRow();
     return m_Adapter.Delete(row.OrderID, row.CustomerID, row.EmployeeID, row.OrderDate, row.RequiredDate, row.ShippedDate, row.ShipVia, row.Freight, row.ShipName, row.ShipAddress, row.ShipCity, row.ShipRegion, row.ShipPostalCode, row.ShipCountry);
 }
 public System.Int32 Delete(Research.Services.Northwind.NorthwindDataSetEntities.OrderDetail entity)
 {
     var row = entity.AsDataRow();
     return m_Adapter.Delete(row.OrderID, row.ProductID, row.UnitPrice, row.Quantity, row.Discount);
 }
 public System.Int32 Delete(Research.Services.Northwind.NorthwindDataSetEntities.Employee entity)
 {
     var row = entity.AsDataRow();
     return m_Adapter.Delete(row.EmployeeID, row.LastName, row.FirstName, row.Title, row.TitleOfCourtesy, row.BirthDate, row.HireDate, row.Address, row.City, row.Region, row.PostalCode, row.Country, row.HomePhone, row.Extension, row.ReportsTo, row.PhotoPath);
 }
 public System.Int32 Delete(Research.Services.Northwind.NorthwindDataSetEntities.Category entity)
 {
     var row = entity.AsDataRow();
     return m_Adapter.Delete(row.CategoryID, row.CategoryName);
 }