Ejemplo n.º 1
0
 public UrunController(IUrunServis urunServis, IKategoriServis kategoriServis, IResimServis resimServis, IYorumServis yorumServis, IKullaniciServis kullaniciServis)
 {
     _urunServis      = urunServis;
     _kategoriServis  = kategoriServis;
     _resimServis     = resimServis;
     _yorumServis     = yorumServis;
     _kullaniciServis = kullaniciServis;
 }
Ejemplo n.º 2
0
        public HomeController(
            IMakaleServis makaleServis,
            IKullaniciServis kullaniciServis,
            IKategoriServis kategoriServis,
            IYorumServis yorumServis,
            ILogger <HomeController> logger, IHakkimdaServis hakkimdaServis, IReferansServis referansServis, IIletisimServis iletisimServis)
        {
            _yorumServis     = yorumServis;
            _kullaniciServis = kullaniciServis;
            _kategoriServis  = kategoriServis;
            _makaleServis    = makaleServis;

            _logger         = logger;
            _hakkimdaServis = hakkimdaServis;
            _referansServis = referansServis;
            _iletisimServis = iletisimServis;
        }
 public ProjelerController(IProjeServis ProjeServis,
                           IMusteriServis musteriServis,
                           IKullaniciServis kullaniciServis,
                           IProjeKarakterServis projeKarakterServis,
                           IProjeKarakterOyuncuServis projeKarakterOyuncuServis,
                           IUyrukServis uyrukServis,
                           IEmailServis emailServis,
                           LoginHelper loginHelper)
 {
     _ProjeServis               = ProjeServis;
     _MusteriServis             = musteriServis;
     _KullaniciServis           = kullaniciServis;
     _ProjeKarakterServis       = projeKarakterServis;
     _ProjeKarakterOyuncuServis = projeKarakterOyuncuServis;
     _UyrukServis               = uyrukServis;
     _emailServis               = emailServis;
     _loginHelper               = loginHelper;
     ViewData["UserHelper"]     = _loginHelper.UserHelper;
 }
Ejemplo n.º 4
0
 public ProjeManager(IProjeDal dal,
                     IMusteriServis musteriServis,
                     IKullaniciServis kullaniciServis,
                     IUyrukServis uyrukServis,
                     IIlServis ilServis,
                     IProjeKarakterServis projeKarakterServis,
                     IProjeKarakterOyuncuServis projeKarakterOyuncuServis,
                     IOyuncuResimServis oyuncuResimServis,
                     IOyuncuVideoServis oyuncuVideoServis
                     ) : base(dal)
 {
     _projeDal                  = dal;
     _MusteriServis             = musteriServis;
     _KullaniciServis           = kullaniciServis;
     _ProjeKarakterServis       = projeKarakterServis;
     _ProjeKarakterOyuncuServis = projeKarakterOyuncuServis;
     _UyrukServis               = uyrukServis;
     _IlServis                  = ilServis;
     _oyuncuResimServis         = oyuncuResimServis;
     _oyuncuVideoServis         = oyuncuVideoServis;
 }
 public AccountController(IKullaniciServis kullaniciServis, IRolServis rolServis)
 {
     _kullaniciServis = kullaniciServis;
     _rolServis       = rolServis;
 }
Ejemplo n.º 6
0
 public HakkimdaController(IHakkimdaServis hakkimdaServis, IKullaniciServis kullaniciServis)
 {
     _hakkimdaServis  = hakkimdaServis;
     _kullaniciServis = kullaniciServis;
 }
Ejemplo n.º 7
0
 public AdminHomeController(IMakaleServis makaleServis, IKullaniciServis kullaniciServis, IKategoriServis kategoriServis)
 {
     _makaleServis    = makaleServis;
     _kullaniciServis = kullaniciServis;
     _kategoriServis  = kategoriServis;
 }
 public KategoriController(IKategoriServis kategoriServis, IKullaniciServis kullaniciServis)
 {
     _kategoriServis  = kategoriServis;
     _kullaniciServis = kullaniciServis;
 }
Ejemplo n.º 9
0
 public ProfilKartViewComponent(IKullaniciServis kullaniciServis)
 {
     _kullaniciServis = kullaniciServis;
 }
Ejemplo n.º 10
0
        //private GirisBilgisi _girisBiligisi=new GirisBilgisi();

        public AdminGirisController(IKullaniciServis kullaniciServis)
        {
            _kullaniciServis = kullaniciServis;
        }
Ejemplo n.º 11
0
 public BildirimViewComponent(IBildirimServis bildirimServis, IKullaniciServis kullaniciServis)
 {
     _bildirimServis  = bildirimServis;
     _kullaniciServis = kullaniciServis;
 }
Ejemplo n.º 12
0
 public GrafikViewComponent(IMakaleServis makaleServis, IKullaniciServis kullaniciServis, IKategoriServis kategoriServis)
 {
     _makaleServis    = makaleServis;
     _kullaniciServis = kullaniciServis;
     _kategoriServis  = kategoriServis;
 }
Ejemplo n.º 13
0
 public AdminKullaniciController(IKullaniciServis kullaniciServis = null, IRolServis rolServis = null)
 {
     _kullaniciServis = kullaniciServis;
     _rolServis       = rolServis;
 }
Ejemplo n.º 14
0
 public KullanicilarController(IKullaniciServis kullaniciServis, LoginHelper loginHelper)
 {
     _kullaniciServis       = kullaniciServis;
     _loginHelper           = loginHelper;
     ViewData["UserHelper"] = _loginHelper.UserHelper;
 }
Ejemplo n.º 15
0
 public AdminBildirimController(IBildirimServis bildirimServis, IKullaniciServis kullaniciServis)
 {
     _bildirimServis  = bildirimServis;
     _kullaniciServis = kullaniciServis;
 }