Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ExampleApp"/> class.
 /// </summary>
 /// <param name="authToken">The authentication token.</param>
 public ExampleApp(IExampleAppService appService, ILogger <ExampleApp> logger)
 {
     this.appService = appService;
     this.logger     = logger;
 }
Exemplo n.º 2
0
 public ExampleController(IExampleAppService service,
                          IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }