public static CommentNew New(this ICommentsContract contract, Resource resource, Int64 resourceId)
 {
     return contract.New(resource.Value, resourceId.ToString());
 }
 public static NewEntity Create(this ICommentsContract contract, Resource resource, Int64 resourceId, CommentNew comment)
 {
     return contract.Create(resource.Value, resourceId.ToString(), comment);
 }