This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Bonito é melhor que feio | |
Explícito é melhor que implícito | |
Simples é melhor que complexo | |
Complexo é melhor que complicado | |
Linear é melhor do que aninhado | |
Esparso é melhor que denso | |
Legibilidade conta | |
Casos especiais não são especiais o bastante para quebrar as regras. | |
Ainda que praticidade vença a pureza |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public ActionResult Cadastro(Pessoa model) | |
{ | |
using (var db = new Conexao()) | |
{ | |
if (model.PessoaID == 0) | |
{ | |
db.Pessoa.Add(model); | |
} | |
else | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@model site.Models.Pessoa | |
@{ | |
var novoRegistro = true; | |
if (Model != null && Model.PessoaID != 0) | |
{ | |
novoRegistro = false; | |
} | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public ActionResult Cadastro(int? id) | |
{ | |
if (id != null) | |
{ | |
using (var db = new Conexao()) | |
{ | |
var registro = db.Pessoa.Find(id); | |
return View(registro); | |
} | |
} |