public virtual BOPostTypes MapEFToBO( PostTypes ef) { var bo = new BOPostTypes(); bo.SetProperties( ef.Id, ef.Type); return(bo); }
public virtual BOPostTypes MapModelToBO( int id, ApiPostTypesRequestModel model ) { BOPostTypes boPostTypes = new BOPostTypes(); boPostTypes.SetProperties( id, model.Type); return(boPostTypes); }