Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dn32 committed Apr 23, 2017
1 parent 7dfa0f5 commit 248590a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void ConfigureServices(IServiceCollection services)
.........
}
```
O Model
- <h4>3 passo: O Model</h4>

```C#
public class UnidadeDeTeste : ModelGenerico
Expand All @@ -59,7 +59,7 @@ public class UnidadeDeTeste : ModelGenerico
}
```

O Controller
- <h4>4° passo: O Controller

```C#
public class UnidadeDeTesteController : ControladorGenerico<UnidadeDeTeste>
Expand All @@ -72,7 +72,7 @@ public class UnidadeDeTesteController : ControladorGenerico<UnidadeDeTeste>
}
```

O Serviço customizado
- <h4>5° passo: O Serviço customizado</h4>

```C#
[ServicoDe(typeof(UnidadeDeTeste))]
Expand All @@ -87,7 +87,7 @@ public class ServicoDeUnidadeDeTeste : ServicoGenerico<UnidadeDeTeste>
}
```

O Validação customizada
- <h4>6° passo: O Validação customizada</h4>

```C#
[ValidacaoDe(typeof(UnidadeDeTeste))]
Expand All @@ -110,7 +110,7 @@ public class ValidacaoDeUnidadeDeTeste : ValidacaoGenerica<UnidadeDeTeste>
}
```

O Repositório customizado
- <h4>7° passo: O Repositório customizado</h4>

```C#
[RepositorioDe(typeof(UnidadeDeTeste))]
Expand Down

0 comments on commit 248590a

Please sign in to comment.