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