Exemplo n.º 1
0
 public static ClaimEngine.Contract.Claim MapTo(this ClaimEntity.Claim c)
 {
     return(new ClaimEngine.Contract.Claim
     {
         Id = c.Id,
         ProductId = c.ProductId,
         IsCancelled = c.IsCancelled
     });
 }
Exemplo n.º 2
0
 public static string ToView(this ClaimEntity.Claim c)
 {
     return(string.Format("Id:{0} Product:{1} Cancelled:{2}", c.Id, c.ProductId, c.IsCancelled));
 }