Example #1
0
 public ServiceProxy(User user)
 {
     id    = user.Id;
     style = user.Style;
     title = user.BookTitle;
     image = user.BookImage;
 }
Example #2
0
 public ServiceProxy()
 {
     id    = -1;
     style = RecipeBookStyle.Traditional;
     title = String.Empty;
     image = String.Empty;
 }