コード例 #1
0
ファイル: Contracts.cs プロジェクト: jaceenet/lokad-codedsl
 public GalaxyWiped(UniverseId id, GalaxyId galaxyId, string name, string reason, DateTime dateUtc)
 {
     Id       = id;
     GalaxyId = galaxyId;
     Name     = name;
     Reason   = reason;
     DateUtc  = dateUtc;
 }
コード例 #2
0
ファイル: Contracts.cs プロジェクト: jaceenet/lokad-codedsl
 public GalaxyAdded(UniverseId id, GalaxyId galaxyId, string name, GalaxyType type, DateTime dateUtc)
 {
     Id       = id;
     GalaxyId = galaxyId;
     Name     = name;
     Type     = type;
     DateUtc  = dateUtc;
 }
コード例 #3
0
ファイル: Contracts.cs プロジェクト: jaceenet/lokad-codedsl
 public WipeGalaxy(UniverseId id, GalaxyId galaxyId, string reason)
 {
     Id       = id;
     GalaxyId = galaxyId;
     Reason   = reason;
 }