mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-23 10:25:20 +00:00
Context
This commit is contained in:
.vs/GerenciaProjetos
GerenciaProjetos
Controllers
Data
Migrations
20190921210546_1.Designer.cs20190921210546_1.cs20190921210818_2.Designer.cs20190921210818_2.csGerenciaContextModelSnapshot.cs
Models
Startup.csViews
bin
Debug
obj
Debug
wwwroot
css
@ -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; }
|
||||
|
||||
|
@ -9,11 +9,9 @@ namespace GerenciaProjetos.Models
|
||||
{
|
||||
public class DesenvolvedorProjeto
|
||||
{
|
||||
[Key, Column(Order = 1)]
|
||||
public int DesenvolvedorId { get; set; }
|
||||
public Desenvolvedor Desenvolvedor { get; set; }
|
||||
|
||||
[Key, Column(Order = 2)]
|
||||
|
||||
public int ProjetoId { get; set; }
|
||||
public Projeto Projeto { get; set; }
|
||||
}
|
||||
|
@ -9,14 +9,12 @@ namespace GerenciaProjetos.Models
|
||||
{
|
||||
public class DesenvolvedorRequisito
|
||||
{
|
||||
[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; }
|
||||
|
||||
|
||||
[DataType(DataType.Time)]
|
||||
public TimeSpan TempoGasto { get; set; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user