Ejemplo n.º 1
0
 public LessonController(ILessonService lessonService, ITutorLessonService tutorLessonService, ILessonCommentService lessonCommentService, IKullaniciService kullaniciService)
 {
     _lessonService        = lessonService;
     _tutorLessonService   = tutorLessonService;
     _lessonCommentService = lessonCommentService;
     _kullaniciService     = kullaniciService;
 }
 public ScheduleController(IScheduleService scheduleService, IKullaniciService kullaniciService, ITutorScheduleService tutorScheduleService, ITutorLessonService tutorLessonService)
 {
     _scheduleService      = scheduleService;
     _kullaniciService     = kullaniciService;
     _tutorScheduleService = tutorScheduleService;
     _tutorLessonService   = tutorLessonService;
 }
 public TutorScheduleController(ITutorScheduleService tutorScheduleService, ILessonService lessonService, ITutorLessonService tutorLessonService, IKullaniciService kullaniciService)
 {
     _tutorScheduleService = tutorScheduleService;
     _lessonService        = lessonService;
     _tutorLessonService   = tutorLessonService;
     _kullaniciService     = kullaniciService;
 }
Ejemplo n.º 4
0
 public AccountController(IKullaniciService kullaniciService, IGirisService girisService, IConfiguration configuration, ITutorLessonService tutorLessonService, ILessonService lessonService)
 {
     Configuration       = configuration;
     _kullaniciService   = kullaniciService;
     _girisService       = girisService;
     _tutorLessonService = tutorLessonService;
     _lessonService      = lessonService;
 }
 public HomeController(IKullaniciService kullaniciService, ITutorLessonService tutorLessonService, IConfiguration configuration, ILessonService lessonService, IScheduleService scheduleService)
 {
     Configuration       = configuration;
     _kullaniciService   = kullaniciService;
     _tutorLessonService = tutorLessonService;
     _lessonService      = lessonService;
     _scheduleService    = scheduleService;
 }
 public TutorLessonController(ITutorLessonService tutorLessonService, IKullaniciService kullaniciService)
 {
     _tutorLessonService = tutorLessonService;
     _kullaniciService   = kullaniciService;
 }