Ejemplo n.º 1
0
        public static JobAd Map(this JobAdEntity entity, ILocationQuery locationQuery, IIndustriesQuery industriesQuery)
        {
            var jobAd = entity.MapTo <JobAd>();

            entity.MapTo(jobAd.Description, locationQuery, industriesQuery);
            return(jobAd);
        }
Ejemplo n.º 2
0
 public static JobAdEntry Map(this JobAdEntity entity)
 {
     return(entity.MapTo <JobAdEntry>());
 }