public InvoiceService(IInvoiceRepository invoiceRepository, ILessonsRepository lessonsRepository, IPdfService pdfService, IHandlebarsService handlebarsService) { InvoiceRepository = invoiceRepository; LessonsRepository = lessonsRepository; PdfService = pdfService; HandlebarsService = handlebarsService; }
public TeachPlanController(ILessonsRepository repo) { this.repository = repo; }
public JournalController(ILessonsRepository repoL, IUsersRepository repoU) { this.lessonRepository = repoL; this.userRepository = repoU; }
public LessonsService(ILessonsRepository lessonsRepository) { _lessonRepository = lessonsRepository; }
public LessonsService() { this._lessonsRepo = new LessonsRepository(); this._lessonsMapper = new LessonsMapper(); }
public LessonService(ILessonsRepository lessonsRepository, IStudentsRepository studentsRepository) { LessonsRepository = lessonsRepository; StudentsRepository = studentsRepository; }