示例#1
0
 public AuthorsController(IAuthorService authorService, IRemotingProxy remotingProxy,
                          IConfigHelper configHelper)
 {
     _authorService = authorService;
     _remotingProxy = remotingProxy;
     _configHelper  = configHelper;
 }
示例#2
0
 public BooksController(IBookService bookService, IRemotingProxy remotingProxy,
                        IConfigHelper configHelper)
 {
     _bookService   = bookService;
     _remotingProxy = remotingProxy;
     _configHelper  = configHelper;
 }