Exemplo n.º 1
0
 public NotFoundFilter(IBlogServices blogservices, IHaberServices haberservices, IMakaleServices makaleservices, INotServices notservices, IVideoServices videoservices)
 {
     _blogservices   = blogservices;
     _haberservices  = haberservices;
     _makaleservices = makaleservices;
     _notservices    = notservices;
     _videoservices  = videoservices;
 }
 public MakaleController(IMakaleServices makaleService)
 {
     _makaleServices = makaleService;
 }
 public HomeController(IMakaleServices makaleServices, IKategoriService kategoriService)
 {
     _makaleServices  = makaleServices;
     _kategoriService = kategoriService;
 }
Exemplo n.º 4
0
 public MakalesController(IMakaleServices makaleservices, IMapper mapper)
 {
     _makaleservices = makaleservices;
     _mapper         = mapper;
 }
 public KategoriController(IKategoriService kategoriService, IMakaleServices makaleService)
 {
     _kategoriService = kategoriService;
     _makaleService   = makaleService;
 }
Exemplo n.º 6
0
 public EtiketController(IEtiketService etiketService, IMakaleServices makaleService)
 {
     _etiketSerivce = etiketService;
     _makaleService = makaleService;
 }