示例#1
0
 public RecipeDataItem(String uniqueId, String title, String shortTitle, String imagePath, int preptime,
                       String directions, ObservableCollection <string> ingredients, RecipeDataGroup group)
     : base(uniqueId, title, shortTitle, imagePath)
 {
     _preptime    = preptime;
     _directions  = directions;
     _ingredients = ingredients;
     _group       = group;
     _userImages  = new ObservableCollection <string>();
 }
示例#2
0
 public RecipeDataItem(String uniqueId, String title, String shortTitle, String imagePath, int preptime,
     String directions, ObservableCollection<string> ingredients, RecipeDataGroup group)
     : base(uniqueId, title, shortTitle, imagePath)
 {
     _preptime = preptime;
     _directions = directions;
     _ingredients = ingredients;
     _group = group;
     _userImages = new ObservableCollection<string>();
 }