Пример #1
0
        public string GetDateFormat()
        {
            IAccountHistoryDAL purInvoice = new AccountHistoryDAL();
            var result = purInvoice.GetDateFormat();

            return(result);
        }
Пример #2
0
        public bool SaveSearchJson(string jsonSearch, int ScreenId, string ScreenName)
        {
            IAccountHistoryDAL purInvoice = new AccountHistoryDAL();
            var result = purInvoice.SaveSearchJson(jsonSearch, ScreenId, ScreenName);

            return(result);
        }
Пример #3
0
        public string GetLastSelectionData(int ScreenId)
        {
            IAccountHistoryDAL purInvoice = new AccountHistoryDAL();
            var result = purInvoice.GetLastSelectionData(ScreenId);

            return(result);
        }
Пример #4
0
        public List <Account_History_List> ExportAccountHistory(string jsondata, string FileName)
        {
            IAccountHistoryDAL purInvoice = new AccountHistoryDAL();

            DataSet   ds = new DataSet();
            DataTable dt = new DataTable();

            accounthistory = purInvoice.ExportAccountHistory(jsondata, FileName);
            dt             = ToDataTable(accounthistory);
            ds.Tables.Add(dt);
            ExportToExcel(ds, FileName);
            return(accounthistory);
        }
Пример #5
0
        public List <AccountHistoryEntity> GetAllSalesInvoiceJson(string jsondata)
        {
            IAccountHistoryDAL purInvoice = new AccountHistoryDAL();

            return(purInvoice.GetAllSalesInvoiceJson(jsondata));
        }