//学生登录 public Models.XueShengBiao login(Models.XueShengBiao Student) { try { var json = DBContext.XueShengBiao.Where(p => p.MiMa == Student.MiMa && p.Phone == Student.Phone).First(); return(json); } catch (Exception ex) { return(null); } }
public Models.XueShengBiao XueSheng(Models.XueShengBiao xueSheng) { return(dAL.login(xueSheng)); }