public void FindAllTestNotNull() { // Act int result = delegationRepository.FindAll().Count(); // Assert Assert.IsTrue(result >= 0, "Unable to find all properly"); }
public List <Delegation> FindAllDelegations() { return(delegationRepository.FindAll().ToList()); }