예제 #1
0
 internal int Delete()
 {
     try
     {
         using (ShippersDL _shippersdlDL = new ShippersDL())
         {
             return(_shippersdlDL.Delete(this));
         }
     }
     catch (Exception)
     {
         throw;
     }
 }
예제 #2
0
 internal int InsertAndGetId()
 {
     try
     {
         using (ShippersDL _shippersdlDL = new ShippersDL())
         {
             return(_shippersdlDL.InsertAndGetId(this));
         }
     }
     catch (Exception)
     {
         throw;
     }
 }