Exemplo n.º 1
0
 public RecipeExecutor(IDbConversation dbConversation, IRecipeFinder recipeFinder, IStockFinder stockFinder, IStockBooker stockBooker)
 {
     _dbConversation = dbConversation;
     _recipeFinder = recipeFinder;
     _stockFinder = stockFinder;
     _stockBooker = stockBooker;
 }
Exemplo n.º 2
0
 public StockItemBookingViewModel(IDbConversation dbConversation, IEventAggregator eventAggregator, IStockBooker stockBooker)
     : base(dbConversation, eventAggregator)
 {
     _stockBooker = stockBooker;
     _moveBookStockItems = new MoveBookStockItems(dbConversation);
     PreloadLists();
     base.DisplayName = Strings.ViewModel_StockItemBookinViewModel_Title;
 }