コード例 #1
0
 internal int Delete()
 {
     try
     {
         using (CustomerCustomerDemoDL _customercustomerdemodlDL = new CustomerCustomerDemoDL())
         {
             return(_customercustomerdemodlDL.Delete(this));
         }
     }
     catch (Exception)
     {
         throw;
     }
 }
コード例 #2
0
 internal int InsertAndGetId()
 {
     try
     {
         using (CustomerCustomerDemoDL _customercustomerdemodlDL = new CustomerCustomerDemoDL())
         {
             return(_customercustomerdemodlDL.InsertAndGetId(this));
         }
     }
     catch (Exception)
     {
         throw;
     }
 }