public void RetrieveCustomerRepositoryTest()
        {
            //Arrange
            ICustomerRepository repository = new CustomerRepository();

            //Action
            Customer customer = repository.Get(1);

            //Assert
            Assert.IsNotNull(customer);
            Assert.IsTrue(customer.Id > 0);
            Assert.IsFalse(string.IsNullOrEmpty(customer.Name));
            Assert.IsFalse(string.IsNullOrEmpty(customer.Cpf));
            Assert.IsFalse(string.IsNullOrEmpty(customer.Email));
            Assert.IsFalse(string.IsNullOrEmpty(customer.Phone));
        }