public CustomerController(ITipoAppService customerAppService,
                           INotificationHandler <DomainNotification> notifications) : base(notifications)
 {
     _customerAppService = customerAppService;
 }
 public HomeController(ILogger <HomeController> logger, ITipoAppService tiposervice)
 {
     _tipoAppService = tiposervice;
     _logger         = logger;
 }
 public TipoController(ITipoAppService tipoApp)
 {
     _tipoApp = tipoApp;
 }