This commit is contained in:
GuiNerd
2019-09-21 18:21:54 -03:00
parent d6ee0821c8
commit b46ddd2f0d
29 changed files with 1294 additions and 196 deletions

View File

@ -9,18 +9,16 @@ namespace GerenciaProjetos.Models
{
public class Bug
{
[Key, Column(Order = 1)]
public int DesenvolvedorId { get; set; }
public Desenvolvedor Desenvolvedor { get; set; }
[Key, Column(Order = 2)]
public int RequisitoId { get; set; }
public Requisito Requisito { get; set; }
public string Prioridade { get; set; }
public DateTime DataCadastro { get; set; }
public int CriadorId { get; set; }
public Desenvolvedor Criador { get; set; }