public int AddProject(Projects project) { try { db.Projects.Add(project); db.SaveChanges(); return(project.ProjectId); } catch { throw; } }
public int ChangeProjectName(Projects project) { try { db.Entry(project).State = EntityState.Modified; db.SaveChanges(); return(1); } catch { throw; } }
public int AddSession(Sessions session) { try { db.Sessions.Add(session); db.SaveChanges(); return(session.SessionId); } catch { throw; } }
public void Add(Project entity) { _timelyDBContext.Add(entity); _timelyDBContext.SaveChanges(); }
public void Add(WorkSession entity) { _timelyDBContext.Add(entity); _timelyDBContext.SaveChanges(); }