Ejemplo n.º 1
0
        public StudentController(IMapper mapper, SchoolAPiDbContext dbContext, IStudentRepsitory studentRepsitory)
        {
            this.studentRepsitory = studentRepsitory;
            this.dbContext        = dbContext;

            this.mapper = mapper;
        }
Ejemplo n.º 2
0
 public StudentsController(IStudentRepsitory student, IStudentService studentService)
 {
     _student        = student;
     _studentService = studentService;
 }
Ejemplo n.º 3
0
 public HomeController(IStudentRepsitory studentRepsitory)
 {
     _studentRepsitory = studentRepsitory;
 }