Flesh out domain and start student commands

This commit is contained in:
2019-04-24 17:50:37 +00:00
parent a51306af55
commit a30e9a5b1c
18 changed files with 648 additions and 197 deletions

View File

@@ -7,5 +7,16 @@ namespace BrightGlimmer.Domain
public class Entity
{
public Guid Id { get; set; }
public bool IsDeleted { get; set; }
public DateTime CreatedDate { get; set; }
public DateTime ModifiedDate { get; set; }
public Entity()
{
Id = Guid.NewGuid();
CreatedDate = DateTime.UtcNow;
ModifiedDate = DateTime.UtcNow;
}
}
}