public virtual BOCountryRegion MapEFToBO( CountryRegion ef) { var bo = new BOCountryRegion(); bo.SetProperties( ef.CountryRegionCode, ef.ModifiedDate, ef.Name); return(bo); }
public virtual BOCountryRegion MapModelToBO( string countryRegionCode, ApiCountryRegionRequestModel model ) { BOCountryRegion boCountryRegion = new BOCountryRegion(); boCountryRegion.SetProperties( countryRegionCode, model.ModifiedDate, model.Name); return(boCountryRegion); }