示例#1
0
 public ClienteController(
     IClienteAppService appService,
     ITipoClienteAppService tipoClienteAppService,
     ITipoIdentificacaoAppService tipoIdentificacaoAppService)
 {
     this.appService                  = appService;
     this.tipoClienteAppService       = tipoClienteAppService;
     this.tipoIdentificacaoAppService = tipoIdentificacaoAppService;
 }
 public TipoIdentificacaoController(ITipoIdentificacaoAppService service)
 {
     this.service = service;
 }
示例#3
0
 public TipoIdentificacaoTest(InicializacaoFixture fixture)
 {
     this.fixture    = fixture;
     this.appService = fixture.Container.GetService <ITipoIdentificacaoAppService>();
 }