コード例 #1
0
 public GlsaBusinessContextService(IProgressConnection connection)
 {
     this.glsaRepository      = new GlsaRepository(connection);
     this.asglsetupRepository = new AsglsetupRepository(connection);
     this.sascRepository      = new SascRepository(connection);
 }
コード例 #2
0
 public GlsaService(GlsaRepository repository, SascRepository sascRepository)
 {
     this.repository     = repository;
     this.sascRepository = sascRepository;
 }
コード例 #3
0
 public GlsaApiController(GlsaRepository repository)
 {
     this.repository = repository;
     this.OnCreated();
 }