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