public void CreateTest()
        {
            EstadoDto estado = new EstadoDto("CE", "Estado Teste Create");

            _estadoService.Create(estado);

            Assert.IsNotNull(_estadoService.FindById(estado.Id));
        }