Exemplo n.º 1
0
 public GlsaBusinessContextService(IProgressConnection connection)
 {
     this.glsaRepository      = new GlsaRepository(connection);
     this.asglsetupRepository = new AsglsetupRepository(connection);
     this.sascRepository      = new SascRepository(connection);
 }
Exemplo n.º 2
0
 public GlsaService(GlsaRepository repository, SascRepository sascRepository)
 {
     this.repository     = repository;
     this.sascRepository = sascRepository;
 }
Exemplo n.º 3
0
 public GlsaApiController(GlsaRepository repository)
 {
     this.repository = repository;
     this.OnCreated();
 }