Exemplo n.º 1
0
 // success response
 public RecipeResponse(RecipeByIdResource recipe)
     : this(true, string.Empty, recipe)
 {
 }
Exemplo n.º 2
0
 public RecipeResponse(bool success, string message, RecipeByIdResource recipe)
     : base(success, message)
 {
     Recipe = recipe;
 }