I have a class named Matricula
. It receives the register of Aluno
and Serie
.
I need to do a validation, where if the student is already enrolled in a registered series, the page displays a message stating that the student is already enrolled and does not want to be enrolled again.
Below is the registration code:
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
namespace bj_cursosonline.Models
{
public class Matricula
{
[Key]
public int ID { get; set; }
[Required(ErrorMessage = "Campo obrigatório!")]
[Display(Name = "Aluno")]
public int ALUNOSID { get; set; }
[Required(ErrorMessage = "Campo obrigatório!")]
[Display(Name = "Série")]
public int SERIESID { get; set; }
public virtual Series SERIES { get; set; }
public virtual Alunos ALUNO { get; set; }
}
}
Student Class:
public enum SEXOALUNO
{
MASCULINO, FEMININO
}
public class Alunos
{
[Key]
public int ID { get; set; }
[Display(Name = "Nome")]
[Required(ErrorMessage = "Campo obrigatório!")]
public string NOME { get; set; }
[Display(Name = "Sexo")]
[Required(ErrorMessage = "Campo obrigatório!")]
public SEXOALUNO? SEXO { get; set; }
[Required(ErrorMessage = "Campo obrigatório!")]
[Display(Name = "Data de Nascimento")]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:yyyy-MM-dd}")]
[DataType(DataType.Date, ErrorMessage = "Data em formato inválido!")]
public DateTime DATANASCIMENTO { get; set; }
public virtual ICollection<Matricula>
Matricula
{ get; set; }
}
Serial Class:
public enum TURMA
{
A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z
}
public enum TURNO
{
MANHÃ, TARDE, NOITE
}
public class Series
{
[Key]
public int ID { get; set; }
[Required(ErrorMessage = "Campo Obrigatório!")]
[StringLength(50)]
[Display(Name = "Descrição:")]
public string DESCRICAO { get; set; }
[Display(Name = "Turma:")]
public TURMA? TURMA { get; set; }
[Display(Name = "Turno: ")]
public TURNO? TURNO { get; set; }
[Required(ErrorMessage = "Campo Obrigatório!")]
[Display(Name = "Número da Sala:")]
public int NUMSALA { get; set; }
public virtual ICollection<Avaliacoes>
Avaliacoes
{ get; set; }
public virtual ICollection<Matricula>
Matricula
{ get; set; }
}