refactor: Projektdateien migriert. Cloud-NuGet-Pakete durch lokale NuGet-Projekte ersetzt.
This commit is contained in:
22
DAL/Models/Entities/EmployeeAttribute.cs
Normal file
22
DAL/Models/Entities/EmployeeAttribute.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using HRD.WebApi.DAL;
|
||||
|
||||
namespace DAL.Models.Entities
|
||||
{
|
||||
public partial class EmployeeAttribute : BaseEntity
|
||||
{
|
||||
public int EmployeeAttributeId { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Shortname { get; set; }
|
||||
public string RoleList { get; set; }
|
||||
public int? SeqNo { get; set; }
|
||||
|
||||
//generic Id
|
||||
public override int GetEntityId() => EmployeeAttributeId;
|
||||
|
||||
//generic ToString()
|
||||
public override string ToString() => $"EmployeeAttributeId: {GetEntityId()}; Name: {Name}";
|
||||
|
||||
//generic EntityInfo()
|
||||
public override string EntityInfo() => base.EntityInfo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user