예제 #1
0
 public TitleController()
 {
     _pubsService = new PubsService();
 }
예제 #2
0
 public PubViewModel2(IPubsService service)
 {
     Service = service ?? throw new ArgumentNullException(nameof(service));
 }
예제 #3
0
 public AuthorController()
 {
     _pubsService = new PubsService();
 }
예제 #4
0
 public AuthorController(IPubsService pubsService)
 {
     _pubsService = pubsService;
 }
 public TitleController()
 {
     _pubsService      = new PubsService();
     _addAuthorFeature = new AddAuthorFeature();
 }
예제 #6
0
 public PublisherController(IPubsService pubsService)
 {
     _pubsService = pubsService;
 }
예제 #7
0
 public PublisherController()
 {
     _pubsService = new PubsService();
 }
예제 #8
0
 public PublisherController(IPubsService pubsService)
 {
     _telemetryClient = new TelemetryClient();
     _pubsService     = pubsService;
 }
예제 #9
0
 public PublisherController()
 {
     _telemetryClient = new TelemetryClient();
     _pubsService     = new PubsService();
 }