コード例 #1
0
ファイル: Translator.cs プロジェクト: gpehartz/tsc
 public static ServiceModel.MatchResult TranslateToService(Domain.MatchResult matchResult)
 {
     return(new ServiceModel.MatchResult
     {
         HomeGoals = matchResult.HomeGoals,
         AwayGoals = matchResult.AwayGoals
     });
 }
コード例 #2
0
 public static MatchResult TranslateToService(Domain.MatchResult matchResult)
 {
     return
         new MatchResult
         {
             HomeGoals = matchResult.HomeGoals,
             AwayGoals = matchResult.AwayGoals
         };
 }