コード例 #1
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;
 }
コード例 #2
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;
 }