public UrunlerController(IKategorilerService kategorilerService, IUrunlerService urunlerService, IYorumlarService yorumlarService, IUyelerService uyelerService) : base(kategorilerService)
 {
     _kategorilerService = kategorilerService;
     _urunlerService     = urunlerService;
     _yorumlarService    = yorumlarService;
     _uyelerService      = uyelerService;
 }
 public KitapController(IKitapService kitapService, IYorumlarService yorumlarService)
 {
     _kitapService    = kitapService;
     _yorumlarService = yorumlarService;
 }
 public YorumlarController(IYorumlarService yorumlarService)
 {
     _yorumlarService = yorumlarService;
 }