feat(WfState): Wf-Präfix aus Entität, Repository und DbSet entfernt

This commit is contained in:
Developer 02
2024-10-23 11:49:20 +02:00
parent e1ec8c581c
commit a7081d3f74
6 changed files with 6 additions and 6 deletions

View File

@@ -48,6 +48,6 @@ namespace WorkFlow.Domain.Entities
public Profile? Profile { get; init; } = null;
[ForeignKey("StateId")]
public WfState? State { get; init; } = null;
public State? State { get; init; } = null;
}
}

View File

@@ -5,7 +5,7 @@ using System.ComponentModel.DataAnnotations.Schema;
namespace WorkFlow.Domain.Entities
{
[Table("TBMWF_WF_STATE", Schema = "dbo")]
public class WfState : IUnique<int>
public class State : IUnique<int>
{
[Key]
[Column("GUID")]