feat(WfState): Wf-Präfix aus Entität, Repository und DbSet entfernt
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
@@ -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")]
|
||||
Reference in New Issue
Block a user