public static List <Domain.Socioboard.Models.EwalletWithdrawRequest> GetEwalletWithdraw(Model.DatabaseRepository dbr)
        {
            List <Domain.Socioboard.Models.EwalletWithdrawRequest> lstEwalletWithdrawRequest = dbr.FindAll <Domain.Socioboard.Models.EwalletWithdrawRequest>().ToList();

            if (lstEwalletWithdrawRequest != null)
            {
                return(lstEwalletWithdrawRequest);
            }
            else
            {
                return(null);
            }
        }