コード例 #1
0
ファイル: GoalDto.cs プロジェクト: Tpessia/ODataSamples
 public static GoalDto Map(Goal domain) => domain is null ? default :
コード例 #2
0
ファイル: Developer.cs プロジェクト: Tpessia/ODataSamples
 public Developer()
 {
     _tasksToDo = new Collection <TaskToDo>();
     Goal       = new Goal();
 }