public DataSet GetSchedule(string from, string to, string mode, string dt) { try { DALSchedule obj = new DALSchedule(); DataSet ds = obj.GetSchedule(from, to, mode, dt); return(ds); } catch (Exception) { throw; } }