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