Exemplo n.º 1
0
        public IEnumerable <LotModel> GetEndedLots()
        {
            IEnumerable <Lot>      tempLots = LOperations.GetEndedLots();
            IEnumerable <LotModel> lots     = Mapper.Map <IEnumerable <Lot>, IEnumerable <LotModel> >(tempLots);

            return(lots);
        }
Exemplo n.º 2
0
 public IEnumerable <Lot> GetEndedLots()
 {
     return(LOperations.GetEndedLots());
 }