Skip to content

Instantly share code, notes, and snippets.

@waldyrfelix
Created June 20, 2011 17:39
Show Gist options
  • Save waldyrfelix/1036098 to your computer and use it in GitHub Desktop.
Save waldyrfelix/1036098 to your computer and use it in GitHub Desktop.
Exemplo de ViewModel para ASP.NET MVC
public class MatriculaViewModel
{
public SelectList Turmas { get; set; }
public int? TurmaSelecionada { get; set; }
public DateTime DataDaMatricula { get; set; }
[Required]
public string NomeDoAluno { get; set; }
[Required]
public string CPFDoAluno { get; set; }
[Required]
public string EmailDoAluno { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment