public static bool CheckQuyen(int Module, int Role, int idUser) { AristonContext db = new AristonContext(); var listRight = db.tblRights.Where(p => p.idUser == idUser && p.idModule == Module && p.Role == Role).ToList(); if (listRight.Count > 0) { return(true); } else { return(false); } }
public static void UpdateHistory(string task, string FullName, string UserID) { AristonContext db = new AristonContext(); tblHistoryLogin tblhistorylogin = new tblHistoryLogin(); tblhistorylogin.FullName = FullName; tblhistorylogin.Task = task; tblhistorylogin.idUser = int.Parse(UserID); tblhistorylogin.DateCreate = DateTime.Now; tblhistorylogin.Active = true; db.tblHistoryLogins.Add(tblhistorylogin); db.SaveChanges(); }