public DataTable GetLoginInfo(string username, string pwd) { try { DALSchedule obj = new DALSchedule(); DataTable dt = obj.GetLoginInfo(username, pwd); return(dt); } catch (Exception) { throw; } }