/// <summary>
 /// Initializes a new instance of the <see cref="LinguagemController"/> class.
 ///     Contrutor padrão do LinguagemController.
 /// </summary>
 /// <param name="appService">Application de serviço</param>
 /// <param name="loggerFactory">Factory de gerenciamento de logs</param>
 public LinguagemController(
     ILinguagemAppService appService,
     ILoggerFactory loggerFactory)
     : base(appService)
 {
     this.appService = appService;
     this.logger     = loggerFactory.CreateLogger <LinguagemController>();
 }
Esempio n. 2
0
 public LinguagemController(ILinguagemAppService linguagemAppService, INotificationService notificationService) : base(notificationService)
 {
     _linguagemAppService = linguagemAppService;
 }