public Professor(IProfessor p, IFaixa f, INivel n, ISituacao s, ICategoria c, IDisciplina d) { _professor = p; _faixa = f; _nivel = n; _situacao = s; _categoria = c; _disciplina = d; Disciplinas = new List <Disciplina>(); Faixa = new Faixa(f); Nivel = new Nivel(n); Situacao = new Situacao(s); Categoria = new Categoria(c); }
public ErroDescricao(string _Mensagem, INivel _Nivel, params string[] args) : base(_Mensagem, args) { Nivel = _Nivel; }
public Nivel(INivel n) { _nivel = n; }