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

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

            return(newLayer.FetchAllServices());
        }