Пример #1
0
 public NotificationsController(IAccountManager accountManager, ILibrarySystem system)
 {
     _accountManager = accountManager;
     _system         = system;
 }
Пример #2
0
 public BookManagementController(IBookManager bookManager, IAccountManager accountManager, ILibrarySystem system)
 {
     _bookManager    = bookManager;
     _accountManager = accountManager;
     _system         = system;
 }
Пример #3
0
 public SearchBooksController(IBookManager bookManager, IAccountManager accountManagager, ILibrarySystem system)
 {
     _bookManager    = bookManager;
     _accountManager = accountManagager;
     _system         = system;
 }
Пример #4
0
 public HomeController(IBookManager bookManager, ILibrarySystem system, IAccountManager accountManager)
 {
     _bookManager    = bookManager;
     _system         = system;
     _accountManager = accountManager;
 }
 public UserAccountController(IAccountManager accountManager, ILibrarySystem system)
 {
     _accountManager = accountManager;
     _system         = system;
 }
Пример #6
0
 public UserBooksController(ILibrarySystem system, IAccountManager accountManager)
 {
     _system         = system;
     _accountManager = accountManager;
 }