public void CreateDependenteRepositoryTest()
        {
            //Arrange
            Dependente p = ObjectMother.GetDependente();
            IDependenteRepository repository = new DependenteRepository();

            //Action
            Dependente newDependente = repository.Save(p);

            //Assert
            Assert.IsTrue(newDependente.Id > 0);
        }