示例#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
 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;
 }