Exemplo n.º 1
0
 public NotificationsController(IAccountManager accountManager, ILibrarySystem system)
 {
     _accountManager = accountManager;
     _system         = system;
 }
Exemplo n.º 2
0
 public BookManagementController(IBookManager bookManager, IAccountManager accountManager, ILibrarySystem system)
 {
     _bookManager    = bookManager;
     _accountManager = accountManager;
     _system         = system;
 }
Exemplo n.º 3
0
 public SearchBooksController(IBookManager bookManager, IAccountManager accountManagager, ILibrarySystem system)
 {
     _bookManager    = bookManager;
     _accountManager = accountManagager;
     _system         = system;
 }
Exemplo n.º 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;
 }
Exemplo n.º 6
0
 public UserBooksController(ILibrarySystem system, IAccountManager accountManager)
 {
     _system         = system;
     _accountManager = accountManager;
 }