コード例 #1
0
 public IdentityService(IKullaniciRepo kullaniciRepo, JWTSettings jwtSettings, DBContext context, TokenValidationParameters tokenValidationParameters)
 {
     _kullaniciRepo             = kullaniciRepo;
     _jwtSettings               = jwtSettings;
     _context                   = context;
     _tokenValidationParameters = tokenValidationParameters;
 }
コード例 #2
0
 public GrupRepo(IKullaniciRepo krepo, IYetkiRepo irepo, IGrupKullaniciRepo gkr, IGrupYetkiRepo gir)
 {
     this.kullaniciRepo = krepo;
     this.yetkiRepo     = irepo;
     this.gkRepo        = gkr;
     this.giRepo        = gir;
 }
コード例 #3
0
ファイル: GrupRepo.cs プロジェクト: ibrhmoguz/sts
 public GrupRepo(IKullaniciRepo krepo, IIzinRepo irepo, IGrupKullaniciRepo gkr, IGrupIzinRepo gir)
 {
     this.kullaniciRepo = krepo;
     this.izinRepo      = irepo;
     this.gkRepo        = gkr;
     this.giRepo        = gir;
 }
コード例 #4
0
ファイル: GrupController.cs プロジェクト: ibrhmoguz/sts
 public GrupController(IGrupRepo sr, IKullaniciRepo krepo, IIzinRepo irepo, IGrupKullaniciRepo gkr, IGrupIzinRepo gir)
 {
     this.grupRepo      = sr;
     this.kullaniciRepo = krepo;
     this.izinRepo      = irepo;
     this.gkRepo        = gkr;
     this.giRepo        = gir;
 }
コード例 #5
0
 public AccountController(IAuthProvider auth, IKullaniciRepo kr, IGrupRepo grupRepo)
 {
     this.authProvider  = auth;
     this.kullaniciRepo = kr;
     this.grupRepo      = grupRepo;
 }
コード例 #6
0
 public KullaniciController(IKullaniciRepo kr, IMusteriRepo mr)
 {
     kullaniciRepo = kr;
     musteriRepo   = mr;
 }
コード例 #7
0
 public KullaniciController(IKullaniciRepo kullaniciRepo)
 {
     _kullaniciRepo = kullaniciRepo;
 }
コード例 #8
0
ファイル: KullaniciController.cs プロジェクト: ibrhmoguz/sts
 public KullaniciController(IKullaniciRepo kr)
 {
     kullaniciRepo = kr;
 }
コード例 #9
0
 public AccountController(IAuthProvider auth, IKullaniciRepo kr)
 {
     this.authProvider  = auth;
     this.kullaniciRepo = kr;
 }