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

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