public bool SaveCountry(CountryUIDto dto) { try { var retVal = this.dal.SaveCountry(dto.Id, dto.Name); return(retVal); } catch (Exception ex) { throw ex; } }
public static CountryUIDto ToUIDto(this DataAccess.Models.Country item) { CountryUIDto dto = null; if (item != null) { dto = new CountryUIDto { Id = item.Id, Name = item.Name }; } return(dto); }
public bool SaveCountry(CountryUIDto dto) { return(new CountryLogic().SaveCountry(dto)); }