public string GetDateFormat()
        {
            IPurchaseQuotationListBL purQuotation = new PurchaseQuotationListBL();
            var result = purQuotation.GetDateFormat();

            return(result);
        }
        public string GetLastSelectionData()
        {
            IPurchaseQuotationListBL purQuotation = new PurchaseQuotationListBL();
            var result = purQuotation.GetLastSelectionData();

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

            return(result);
        }
        public List <YearEntity> GetYearRange()
        {
            IPurchaseQuotationListBL purQuotation = new PurchaseQuotationListBL();
            List <YearEntity>        yearrange    = purQuotation.GetYearRange();

            return(yearrange);
        }
        public List <PurchaseQuotationListEntity> GetAllPurQuotation()
        {
            IPurchaseQuotationListBL           purQuotation  = new PurchaseQuotationListBL();
            List <PurchaseQuotationListEntity> quotationlist = purQuotation.GetAllPurQuotation();

            return(quotationlist);
        }
        public List <PurchaseQuotationListEntity> GetAllPurQuotationJson(string jsondata, bool?ExcincTax)
        {
            IPurchaseQuotationListBL           purQuotation  = new PurchaseQuotationListBL();
            List <PurchaseQuotationListEntity> quotationlist = purQuotation.GetAllPurQuotationJson(jsondata, ExcincTax);

            return(quotationlist);
        }
        public OptionsEntity GetOptionSettings()
        {
            IPurchaseQuotationListBL purQuotation = new PurchaseQuotationListBL();

            return(purQuotation.GetOptionSettings());
        }
        public List <TaxModel> GetDefaultTaxes()
        {
            IPurchaseQuotationListBL purQuotation = new PurchaseQuotationListBL();

            return(purQuotation.GetDefaultTaxes());
        }