Example #1
0
        public List <SupplyItem> GetNewSupplys()
        {
            var result  = new List <SupplyItem>();
            var supplys = supplyRepository.GetNewSupply();

            supplys.ForEach(x => result.Add(ObjectMapper.Supply(x)));
            return(result);
        }