Пример #1
0
 public ItemCreator(ITopView topView, IUnitOfWork fileUnit)
 {
     _topView   = topView;
     _fileSaver = fileUnit;
     _storage   = fileUnit.Ingredients;
 }
Пример #2
0
 public RecipeView(IUnitOfWork storage, ITopView topView)
 {
     _storage = storage;
     _topView = topView;
 }