Ejemplo n.º 1
0
 public YonetimController(IKullanicilarRepository kullanicilarRepository, IHostingEnvironment appEnvironment, IKonularRepository konularAppService, IGenelAppService genelAppService)
 {
     _appEnvironment         = appEnvironment;
     _konularAppService      = konularAppService;
     _genelAppService        = genelAppService;
     _kullanicilarRepository = kullanicilarRepository;
 }
 public KullaniciMakalelerAppService(IBegenilerRepository begenilerRepository, IReklamlarRepository reklamlarRepository, IYorumlarRepository yorumlarRepository, IKonularRepository konularRepository, IMakalelerRepository makalelerRepository, IKullanicilarRepository kullanicilarRepository, IMapper mapper, IGenelAppService genelAppService)
 {
     _kullanicilarRepository = kullanicilarRepository;
     _mapper              = mapper;
     _genelAppService     = genelAppService;
     _makalelerRepository = makalelerRepository;
     _konularRepository   = konularRepository;
     _yorumlarRepository  = yorumlarRepository;
     _reklamlarRepository = reklamlarRepository;
     _begenilerRepository = begenilerRepository;
 }
Ejemplo n.º 3
0
 public KullanicilarAppService(IKullanicilarRepository kullanicilarRepository, IMapper mapper, IGenelAppService genelAppService)
 {
     _kullanicilarRepository = kullanicilarRepository;
     _mapper          = mapper;
     _genelAppService = genelAppService;
 }