示例#1
0
        public string GetDateFormat()
        {
            ISalesQuotationListBL salesQuotation = new SalesQuotationListBL();
            var result = salesQuotation.GetDateFormat();

            return(result);
        }
示例#2
0
        public string GetLastSelectionData()
        {
            ISalesQuotationListBL salesQuotation = new SalesQuotationListBL();
            var result = salesQuotation.GetLastSelectionData();

            return(result);
        }
示例#3
0
        public bool SaveSearchJson(string jsonSearch, int ScreenId, string ScreenName)
        {
            ISalesQuotationListBL salesQuotation = new SalesQuotationListBL();
            var result = salesQuotation.SaveSearchJson(jsonSearch, ScreenId, ScreenName);

            return(result);
        }
示例#4
0
        public List <YearEntity> GetYearRange()
        {
            ISalesQuotationListBL salesQuotation = new SalesQuotationListBL();
            List <YearEntity>     yearrange      = salesQuotation.GetYearRange();

            return(yearrange);
        }
示例#5
0
        public List <SalesQuotationListEntity> GetAllSalesQuotation()
        {
            ISalesQuotationListBL           salesQuotation = new SalesQuotationListBL();
            List <SalesQuotationListEntity> quotationlist  = salesQuotation.GetAllSalesQuotation();

            return(quotationlist);
        }
示例#6
0
        public List <SalesQuotationListEntity> GetAllSalesQuotationJson(string jsondata, bool?ExcincTax)
        {
            ISalesQuotationListBL           salesQuotation = new SalesQuotationListBL();
            List <SalesQuotationListEntity> quotationlist  = salesQuotation.GetAllSalesQuotationJson(jsondata, ExcincTax);

            return(quotationlist);
        }
 public string GetLastSelectionData(int ScreenId)
 {
     ISalesQuotationListBL salesQuotation = new SalesQuotationListBL();
     var result = salesQuotation.GetLastSelectionData(ScreenId);
     return result;
 }