Ejemplo n.º 1
0
 public AuthorsController(IAuthorService authorService, IRemotingProxy remotingProxy,
                          IConfigHelper configHelper)
 {
     _authorService = authorService;
     _remotingProxy = remotingProxy;
     _configHelper  = configHelper;
 }
Ejemplo n.º 2
0
 public BooksController(IBookService bookService, IRemotingProxy remotingProxy,
                        IConfigHelper configHelper)
 {
     _bookService   = bookService;
     _remotingProxy = remotingProxy;
     _configHelper  = configHelper;
 }