public GlsaBusinessContextService(IProgressConnection connection) { this.glsaRepository = new GlsaRepository(connection); this.asglsetupRepository = new AsglsetupRepository(connection); this.sascRepository = new SascRepository(connection); }
public GlsaService(GlsaRepository repository, SascRepository sascRepository) { this.repository = repository; this.sascRepository = sascRepository; }
public GlsaApiController(GlsaRepository repository) { this.repository = repository; this.OnCreated(); }