Renamed some fields
This commit is contained in:
@@ -22,6 +22,6 @@ namespace WD7UVN_HFT_2023241.Models
|
|||||||
[ForeignKey(nameof(MaintainerTeam))]
|
[ForeignKey(nameof(MaintainerTeam))]
|
||||||
public int MAINTAINER_ID { get; set; }
|
public int MAINTAINER_ID { get; set; }
|
||||||
[ForeignKey(nameof(Employee))]
|
[ForeignKey(nameof(Employee))]
|
||||||
public int MANAGER { get; set; }
|
public int MANAGER_ID { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,6 +15,6 @@ namespace WD7UVN_HFT_2023241.Models
|
|||||||
public string EMAIL { get; set; }
|
public string EMAIL { get; set; }
|
||||||
[Required]
|
[Required]
|
||||||
[ForeignKey(nameof(Employee))]
|
[ForeignKey(nameof(Employee))]
|
||||||
public int LEADER_EMPLOYEE_ID { get; set; }
|
public int LEADER_ID { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ namespace WD7UVN_HFT_2023241.Models
|
|||||||
public int ID { get; set; }
|
public int ID { get; set; }
|
||||||
[ForeignKey(nameof(MaintainerTeam))]
|
[ForeignKey(nameof(MaintainerTeam))]
|
||||||
[Required]
|
[Required]
|
||||||
public int MAINTAINER { get; set; }
|
public int MAINTAINER_ID { get; set; }
|
||||||
[Required]
|
[Required]
|
||||||
public string NAME { get; set; }
|
public string NAME { get; set; }
|
||||||
public int VERSION { get; set; }
|
public int VERSION { get; set; }
|
||||||
|
|||||||
Reference in New Issue
Block a user