Ez is itt félig kész ...
This commit is contained in:
@@ -13,6 +13,7 @@ namespace WorkFlowCheck.DL.Entities
|
||||
public string ShortName { get; set; } = null!;
|
||||
public string Description { get; set; } = null!;
|
||||
public string DocumentNumber { get; set; } = null!;
|
||||
public Guid GuidNumber { get; set; }
|
||||
public bool IsStorno { get; set; }
|
||||
public DateTime LastModAt { get; set; }
|
||||
public string LastModBy { get; set; } = null!;
|
||||
|
||||
@@ -7,15 +7,16 @@ using WorkFlowCheck.DL.Interfaces;
|
||||
|
||||
namespace WorkFlowCheck.DL.Entities
|
||||
{
|
||||
public class CheckListRow:ISoftDeletableEntity, IAuditableEntity
|
||||
public class CheckListRow : ISoftDeletableEntity, IAuditableEntity
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int CheckListHeaderId { get; set; }
|
||||
public int Id { get; set; }
|
||||
public int CheckListHeaderId { get; set; }
|
||||
public virtual CheckListHeader CheckListHeader { get; set; } = null!;
|
||||
public int CheckListTemplateRowId { get; set; }
|
||||
public int CheckListTemplateRowId { get; set; }
|
||||
public virtual CheckListTemplateRow CheckListTemplateRow { get; set; } = null!;
|
||||
public string Answer { get; set; } = null!;
|
||||
public string Answer { get; set; } = null!;
|
||||
public byte[] Photo { get; set; } = null!;
|
||||
public Guid GuidNumber { get; set; }
|
||||
public DateTime LastModAt { get; set; }
|
||||
public string LastModBy { get; set; } = null!;
|
||||
public DateTime CreatedAt { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user