示例#1
0
 public LogradourosController(ILogradouroAppService logradouroApp, ITipoLogradouroAppService tipoLogradouroApp, IMunicipioAppService municipioApp, IEstadoAppService estadoApp, IPaisAppService paisApp)
 {
     _logradouroApp     = logradouroApp;
     _tipoLogradouroApp = tipoLogradouroApp;
     _municipioApp      = municipioApp;
     _estadoApp         = estadoApp;
     _paisApp           = paisApp;
 }
 public FornecedorAppService(IFornecedorService service,
                             IAutoIncrementoAppService autoIncrementoApp,
                             IMunicipioAppService municipioApp)
     : base(service)
 {
     Service           = service;
     AutoIncrementoApp = autoIncrementoApp;
     MunicipioApp      = municipioApp;
 }
示例#3
0
 public MunicipioController(INotificationHandler <DomainNotification> notifications,
                            IMediatorHandler mediator,
                            IMunicipioAppService municipioAppService) : base(notifications, mediator)
 {
     _municipioAppService = municipioAppService;
 }
 public BairrosController(IBairroAppService bairroApp, IMunicipioAppService municipioApp)
 {
     _bairroApp    = bairroApp;
     _municipioApp = municipioApp;
 }
 public MunicipiosController(IMunicipioAppService municipioApp, IEstadoAppService estadoApp)
 {
     _municipioApp = municipioApp;
     _estadoApp    = estadoApp;
 }
 public NotaFiscalAppService(IMunicipioAppService municipioApp)
 {
     MunicipioApp = municipioApp;
 }