public string GetDateFormat()
        {
            IPurchaseQuotationListDAL purQuotation = new PurchaseQuotationListDAL();
            var result = purQuotation.GetDateFormat();

            return(result);
        }
        public string GetLastSelectionData()
        {
            IPurchaseQuotationListDAL purQuotation = new PurchaseQuotationListDAL();
            var result = purQuotation.GetLastSelectionData();

            return(result);
        }
        public List <PurchaseQuotationListEntity> GetAllPurQuotationJson(string jsondata, bool?ExcincTax)
        {
            IPurchaseQuotationListDAL purQuotation = new PurchaseQuotationListDAL();
            var quotationlist = purQuotation.GetAllPurQuotationJson(jsondata, ExcincTax);

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

            return(result);
        }
        public List <PurchaseQuotationListEntity> GetAllPurQuotation()
        {
            IPurchaseQuotationListDAL purQuotation = new PurchaseQuotationListDAL();
            var quotationlist = purQuotation.GetAllPurQuotation();

            return(quotationlist);
        }