public virtual void Delete() { if (this.BaseDataAccessAvailable()) { TestSprocGenerator.Data.SingleTable.Dto.PhoneNumberType dto = _baseBusiness.FillDtoWithThis(this); TestSprocGenerator.Data.SingleTable.Dto.PhoneNumberType returnDto = _baseDataAccess.Delete(dto); this.FillThisWithDto(returnDto); } else { throw new System.ApplicationException(FILL_DB_SETTINGS_EXCEPTION); } }
public virtual void GetByPrimaryKey() { if (this.BaseDataAccessAvailable()) { TestSprocGenerator.Data.SingleTable.Dto.PhoneNumberType dto = this; List <TestSprocGenerator.Data.SingleTable.Dto.PhoneNumberType> returnDto = _baseDataAccess.Get(dto, CommonLibrary.Enumerations.GetPermutations.ByPrimaryKey); if ((returnDto.Count > 0)) { this.FillThisWithDto(returnDto[0]); } else { throw new System.ApplicationException(PRIMARY_KEY_NOT_FOUND_EXCEPTION_VAR_NAME); } } else { throw new System.ApplicationException(FILL_DB_SETTINGS_EXCEPTION); } }
private void FillThisWithDto(TestSprocGenerator.Data.SingleTable.Dto.PhoneNumberType filledDto) { _baseBusiness.FillThisWithDto(filledDto, this); }