예제 #1
0
파일: Supply.cs 프로젝트: Drazel/Warehouse
        public List <SupplyItem> GetNewSupplys()
        {
            var result  = new List <SupplyItem>();
            var supplys = supplyRepository.GetNewSupply();

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