Esempio n. 1
0
 public GrupRepo(IKullaniciRepo krepo, IYetkiRepo irepo, IGrupKullaniciRepo gkr, IGrupYetkiRepo gir)
 {
     this.kullaniciRepo = krepo;
     this.yetkiRepo     = irepo;
     this.gkRepo        = gkr;
     this.giRepo        = gir;
 }
Esempio n. 2
0
 public GrupRepo(IKullaniciRepo krepo, IIzinRepo irepo, IGrupKullaniciRepo gkr, IGrupIzinRepo gir)
 {
     this.kullaniciRepo = krepo;
     this.izinRepo      = irepo;
     this.gkRepo        = gkr;
     this.giRepo        = gir;
 }
Esempio n. 3
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;
 }