public IEnumerable <LotModel> GetUnconfirmedLots() { IEnumerable <Lot> tempLots = LOperations.GetUnconfirmedLots(); IEnumerable <LotModel> lots = Mapper.Map <IEnumerable <Lot>, IEnumerable <LotModel> >(tempLots); return(lots); }
public IEnumerable <Lot> GetUnconfirmedLots() { return(LOperations.GetUnconfirmedLots()); }