示例#1
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;
 }
示例#2
0
 public AccountController(IAuthProvider auth, IKullaniciRepo kr, IGrupRepo grupRepo)
 {
     this.authProvider  = auth;
     this.kullaniciRepo = kr;
     this.grupRepo      = grupRepo;
 }
示例#3
0
 public GrupController(IGrupRepo gr, IMusteriRepo mr)
 {
     grupRepo    = gr;
     musteriRepo = mr;
 }