internal int Delete() { try { using (CustomerDemographicsDL _customerdemographicsdlDL = new CustomerDemographicsDL()) { return(_customerdemographicsdlDL.Delete(this)); } } catch (Exception) { throw; } }
internal int InsertAndGetId() { try { using (CustomerDemographicsDL _customerdemographicsdlDL = new CustomerDemographicsDL()) { return(_customerdemographicsdlDL.InsertAndGetId(this)); } } catch (Exception) { throw; } }