示例#1
0
 public MostPopularAlbumsPrimaryPort(
     IOrmSecondaryPort secondaryPort,
     ILoggerPort logger)
 {
     this.secondaryPort = secondaryPort;
     this.logger        = logger;
     this.appService    = new MostPopularAlbumsApplicationService(new AlbumsSearchService(secondaryPort), logger);
 }
示例#2
0
 public MostPopularAlbumsApplicationService(
     AlbumsSearchService searchService,
     ILoggerPort logger)
 {
     this.domainService = new AlbumDomainService(searchService);
 }