Search Results for

    Show / Hide Table of Contents

    Class EventProcess

    Inheritance
    object
    EventProcess
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: OEMS.Core.Domain
    Assembly: OEMS.Core.dll
    Syntax
    public class EventProcess

    Properties

    CompletionDate

    Declaration
    public DateTime? CompletionDate { get; set; }
    Property Value
    Type Description
    DateTime?

    Event

    Declaration
    [ForeignKey("EventId")]
    public virtual Event Event { get; set; }
    Property Value
    Type Description
    Event

    EventId

    Declaration
    [Required]
    public Guid EventId { get; set; }
    Property Value
    Type Description
    Guid

    EventProcessSteps

    Declaration
    public virtual ICollection<EventProcessStep> EventProcessSteps { get; set; }
    Property Value
    Type Description
    ICollection<EventProcessStep>

    Id

    Declaration
    [Key]
    public Guid Id { get; set; }
    Property Value
    Type Description
    Guid

    ProcessTemplate

    Declaration
    [ForeignKey("ProcessTemplateId")]
    public virtual ProcessTemplate ProcessTemplate { get; set; }
    Property Value
    Type Description
    ProcessTemplate

    ProcessTemplateId

    Declaration
    [Required]
    public Guid ProcessTemplateId { get; set; }
    Property Value
    Type Description
    Guid

    StartDate

    Declaration
    [Required]
    public DateTime StartDate { get; set; }
    Property Value
    Type Description
    DateTime

    Status

    Declaration
    [Required]
    public ProcessStatus Status { get; set; }
    Property Value
    Type Description
    ProcessStatus
    In this article
    Back to top Generated by DocFX