// logging helper public static string FormatParishDTO(ParishDTO parishDTO) { if (parishDTO == null) { // null return("parishDTO: null"); } else { // output values return("parishDTO: \n" + "{ \n" + " ParishId: " + "'" + parishDTO.ParishId + "'" + ", \n" + " CountyId: " + (parishDTO.CountyId != null ? "'" + parishDTO.CountyId + "'" : "null") + ", \n" + " DistrictId: " + (parishDTO.DistrictId != null ? "'" + parishDTO.DistrictId + "'" : "null") + ", \n" + " CountryId: " + (parishDTO.CountryId != null ? "'" + parishDTO.CountryId + "'" : "null") + ", \n" + " Name: " + (parishDTO.Name != null ? "'" + parishDTO.Name + "'" : "null") + ", \n" + " Code: " + (parishDTO.Code != null ? "'" + parishDTO.Code + "'" : "null") + ", \n" + " Latitude: " + (parishDTO.Latitude != null ? "'" + parishDTO.Latitude + "'" : "null") + ", \n" + " Longitude: " + (parishDTO.Longitude != null ? "'" + parishDTO.Longitude + "'" : "null") + ", \n" + " Active: " + "'" + parishDTO.Active + "'" + ", \n" + " IsDeleted: " + "'" + parishDTO.IsDeleted + "'" + ", \n" + " CreateBy: " + (parishDTO.CreateBy != null ? "'" + parishDTO.CreateBy + "'" : "null") + ", \n" + " CreateOn: " + (parishDTO.CreateOn != null ? "'" + parishDTO.CreateOn + "'" : "null") + ", \n" + " UpdateBy: " + (parishDTO.UpdateBy != null ? "'" + parishDTO.UpdateBy + "'" : "null") + ", \n" + " UpdateOn: " + (parishDTO.UpdateOn != null ? "'" + parishDTO.UpdateOn + "'" : "null") + " \n" + "} \n"); } }
public static R_Parish ConvertDTOtoEntity(ParishDTO dto) { R_Parish parish = new R_Parish(); parish.ParishId = dto.ParishId; parish.CountyId = dto.CountyId; parish.DistrictId = dto.DistrictId; parish.CountryId = dto.CountryId; parish.Name = dto.Name; parish.Code = dto.Code; parish.Latitude = dto.Latitude; parish.Longitude = dto.Longitude; parish.Active = dto.Active; parish.IsDeleted = dto.IsDeleted; parish.CreateBy = dto.CreateBy; parish.CreateOn = dto.CreateOn; parish.UpdateBy = dto.UpdateBy; parish.UpdateOn = dto.UpdateOn; return(parish); }