예제 #1
0
파일: Supply.cs 프로젝트: Drazel/Warehouse
        public SupplyItem GetSupplyBySupplyNumber(string supplyNumber)
        {
            var supply = supplyRepository.GetSupplyBySupplyNumber(supplyNumber);

            return(ObjectMapper.Supply(supply));
        }