public StudentController(IMapper mapper, SchoolAPiDbContext dbContext, IStudentRepsitory studentRepsitory) { this.studentRepsitory = studentRepsitory; this.dbContext = dbContext; this.mapper = mapper; }
public StudentsController(IStudentRepsitory student, IStudentService studentService) { _student = student; _studentService = studentService; }
public HomeController(IStudentRepsitory studentRepsitory) { _studentRepsitory = studentRepsitory; }