public ProdutorController(IProdutorAppService appService)
 {
     _appService = appService;
 }
 public ProdutorController(INotificationHandler <DomainNotification> notification,
                           IProdutorAppService heroAppService)
     : base(notification)
 {
     _produtorAppService = heroAppService;
 }