public string getTotalCount(int ScreenId)
        {
            IReceiveMoneyListDAL pandsSoldDAl = new ReceiveMoneyListDAL();
            var result = pandsSoldDAl.getTotalCount(ScreenId);

            return(result);
        }
        public string GetDateFormat()
        {
            IReceiveMoneyListDAL pandsSoldDAl = new ReceiveMoneyListDAL();
            var result = pandsSoldDAl.GetDateFormat();

            return(result);
        }
        public string GetLastSelectionData(int ScreenId)
        {
            IReceiveMoneyListDAL pandsSoldDAl = new ReceiveMoneyListDAL();
            var result = pandsSoldDAl.GetLastSelectionData(ScreenId);

            return(result);
        }
        public List <ReceiveMoneyListEntity> GetAllSalesInvoiceJson(string jsondata)
        {
            IReceiveMoneyListDAL pandsSoldDAl = new ReceiveMoneyListDAL();
            var Invoicelist = pandsSoldDAl.GetAllSalesInvoiceJson(jsondata);

            return(Invoicelist);
        }
        public List <ReceiveMoneyListEntity> GetAllSalesInvoice()
        {
            IReceiveMoneyListDAL pandsSoldDAl = new ReceiveMoneyListDAL();
            var Invoicelist = pandsSoldDAl.GetAllSalesInvoice();

            return(Invoicelist);
        }
        public bool SaveSearchJson(string jsonSearch, int ScreenId, string ScreenName)
        {
            IReceiveMoneyListDAL pandsSoldBL = new ReceiveMoneyListDAL();

            return(pandsSoldBL.SaveSearchJson(jsonSearch, ScreenId, ScreenName));
        }
        public List <ReceiveMoneyListEntity> GetReceiveMoneyList()
        {
            IReceiveMoneyListDAL pandsSoldDAl = new ReceiveMoneyListDAL();

            return(pandsSoldDAl.GetAllSalesInvoice());
        }