public string GetDateFormat()
        {
            IPandSHistoryDAL purQuotation = new PandSHistoryDAL();
            var result = purQuotation.GetDateFormat();

            return(result);
        }
        public string GetLastSelectionData(int ScreenId)
        {
            IPandSHistoryDAL purQuotation = new PandSHistoryDAL();
            var result = purQuotation.GetLastSelectionData(ScreenId);

            return(result);
        }
        public bool SaveSearchJson(string jsonSearch, int ScreenId, string ScreenName)
        {
            IPandSHistoryDAL purQuotation = new PandSHistoryDAL();
            var result = purQuotation.SaveSearchJson(jsonSearch, ScreenId, ScreenName);

            return(result);
        }
        public List <PandSHistoryEntity> GetAllSalesInvoiceJson(string JsonData, bool?ExcincTax)
        {
            IPandSHistoryDAL pandsdal = new PandSHistoryDAL();

            return(pandsdal.GetAllSalesInvoiceJson(JsonData, ExcincTax));
        }
        public List <PandSHistoryEntity> GetAllSalesInvoice()
        {
            IPandSHistoryDAL pandsdal = new PandSHistoryDAL();

            return(pandsdal.GetAllSalesInvoice());
        }