Beispiel #1
0
 /// <summary>
 /// To the dto.
 /// </summary>
 /// <param name="value">The value.</param>
 /// <returns></returns>
 public static FundDto ToDto(this Fund value)
 {
     return(new FundDto(value));
 }
Beispiel #2
0
 /// <summary>
 /// Instantiates a new DTO object from the entity
 /// </summary>
 /// <param name="fund"></param>
 public FundDto(Fund fund)
 {
     CopyFromModel(fund);
 }