public static List <clsGCashTransaction> GetGcashTransactionReport(DateTime dateStart, DateTime dateEnd, int userid, string customer) { dbConnect con = new dbConnect(); List <clsGCashTransaction> ret = new List <clsGCashTransaction>(); try { ret = con.GetGcashTransactionReport(dateStart, dateEnd, userid, customer); } catch { } con.Close(); return(ret); }