This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using AutoMapper; | |
public enum Roles | |
{ | |
Anonymous, | |
Employee, | |
Manager, | |
Admin, | |
Super |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Component | |
{ | |
public int Id { get; set; } | |
public virtual ComponentStatus LatestComponentStatus { get; set; } | |
} | |
public class ComponentStatus { | |
public int Id { get; set; } | |
public DateChanged { get; set; } | |
public StatusEnum Status { get; set; } | |
public in ComponentId { get; set; } |