Example #1
0
        public RamoTest(InicializacaoFixture fixture)
        {
            this.fixture    = fixture;
            this.appService = fixture.Container.GetService <IRamoAppService>();

            Thread.CurrentThread.CurrentCulture   = new CultureInfo("pt-BR");
            Thread.CurrentThread.CurrentUICulture = new CultureInfo("pt-BR");
        }
Example #2
0
 public LojaController(ILojaAppService appService, IRamoAppService RamoAppService)
 {
     this.appService     = appService;
     this.ramoAppService = RamoAppService;
 }
 public IndustriaController(IIndustriaAppService service, IRamoAppService ramoAppService)
 {
     this.service        = service;
     this.ramoAppService = ramoAppService;
 }
 public RamoController(IRamoAppService service)
 {
     this.service = service;
 }