コード例 #1
0
 public ApplicationService(PyDeployerDbContext db, AesEncrypter encrypter)
 {
     this._db        = db;
     this._encrypter = encrypter;
 }
コード例 #2
0
 public ApplicationTokenService(PyDeployerDbContext db)
 {
     this._db = db;
 }
コード例 #3
0
 public DatabaseService(PyDeployerDbContext db, AesEncrypter encrypter)
 {
     this._db        = db;
     this._encrypter = encrypter;
 }
コード例 #4
0
 public ApplicationEnvironmentService(PyDeployerDbContext db)
 {
     this._db = db;
 }
コード例 #5
0
 public BuildTokenService(PyDeployerDbContext db)
 {
     this._db = db;
 }