コード例 #1
0
 public static StrategyResponse MapStrategyResponse(this Strategy strategy)
 {
     return(new StrategyResponse
     {
         Id = strategy.Id,
         Name = strategy.Name,
         StrategyType = strategy.StrategyType
     });
 }
コード例 #2
0
 public static DTO.Strategy MapStrategyToDTO(this Strategy strategy)
 {
     return(new DTO.Strategy
     {
         Id = strategy.Id,
         Name = strategy.Name,
         StrategyType = strategy.StrategyType
     });
 }