public LoanAPI(IBookManager bookManager,
                IBookLoanManager bookLoanManager,
                IBookshelfAisleManager bookshelfAisleManager,
                ICustomerManager customerManager, IShelfManager shelfManager,
                IMoneyDebtManager moneyDebtManager)
 {
     this.bookManager      = bookManager;
     this.bookLoanManager  = bookLoanManager;
     this.customerManager  = customerManager;
     this.shelfManager     = shelfManager;
     this.moneyDebtManager = moneyDebtManager;
 }
Beispiel #2
0
 public AisleAndShelfAPI(IBookshelfAisleManager bookShelfAisleManager, IShelfManager shelfManager, IBookManager bookManager)
 {
     this.BookShelfAisleManager = bookShelfAisleManager;
     this.ShelfManager          = shelfManager;
     this.bookManager           = bookManager;
 }