示例#1
0
 public RecipeExecutor(IDbConversation dbConversation, IRecipeFinder recipeFinder, IStockFinder stockFinder, IStockBooker stockBooker)
 {
     _dbConversation = dbConversation;
     _recipeFinder = recipeFinder;
     _stockFinder = stockFinder;
     _stockBooker = stockBooker;
 }
示例#2
0
 public IngredientFacade(IRecipeFinder finder, IBaseService baseService) : base(baseService)
 {
     _recipesFinder = finder;
 }