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