public void ExistsTeamTest() { log1 = repo.Add(log1); bool result = repo.Exists(log1.Id); Assert.IsTrue(result); }
public bool Exists(int id) { authenticator.AuthenticateAdmin(); return(logRepo.Exists(id)); }