コード例 #1
0
ファイル: BLLayer.cs プロジェクト: FarhanShehzad/FootwearPOS
        public List <Item> fetchAllItems(DateTime lowerDate, DateTime upperDate)
        {
            DALayer newLayer = new DALayer();

            return(newLayer.FetchAllItems(lowerDate, upperDate));
        }
コード例 #2
0
ファイル: BLLayer.cs プロジェクト: FarhanShehzad/FootwearPOS
        public List <Item> fetchAllItems()
        {
            DALayer newLayer = new DALayer();

            return(newLayer.FetchAllItems());
        }