Exemplo n.º 1
0
        public int CompleteReserveOrder(int ReserveId)
        {
            ReportDL Obj = new ReportDL();

            return(Obj.CompleteReserveOrder(ReserveId));
        }
Exemplo n.º 2
0
        public int AddNewReserveOrder(ReserverOrderEntity entity)
        {
            ReportDL Obj = new ReportDL();

            return(Obj.AddNewReserveOrder(entity));
        }
Exemplo n.º 3
0
        public int UpdateReserveOrder(ReserverOrderEntity entity)
        {
            ReportDL Obj = new ReportDL();

            return(Obj.UpdateReserveOrder(entity));
        }
Exemplo n.º 4
0
        public List <ReserverOrderEntity> GetReserveOrder()
        {
            ReportDL productdal = new ReportDL();

            return(productdal.GetReserveOrder());
        }
Exemplo n.º 5
0
        public List <PurchaseChargesEntity> GetTotalStockReportRefurb()
        {
            ReportDL productdal = new ReportDL();

            return(productdal.GetTotalStockReportRefurb());
        }
Exemplo n.º 6
0
        public List <CompleteReportEntity> GetAvailableStockreportDetail(string MakeName, string ModelName, string ProcessorName)
        {
            ReportDL productdal = new ReportDL();

            return(productdal.GetAvailableStockreportDetail(MakeName, ModelName, ProcessorName));
        }
Exemplo n.º 7
0
        public List <PurchaseChargesEntity> GetCompleteAvailableStockreport(int TypeId, int MakeId, int ModelId, int ProcessorId)
        {
            ReportDL productdal = new ReportDL();

            return(productdal.GetCompleteAvailableStockreport(TypeId, MakeId, ModelId, ProcessorId));
        }
Exemplo n.º 8
0
        public List <PurchaseChargesEntity> GetPriceWiseReport(int MakeId, int ModelId, int ProcessorId)
        {
            ReportDL productdal = new ReportDL();

            return(productdal.GetPriceWiseReport(MakeId, ModelId, ProcessorId));
        }