public StudentController(IMapper mapper, SchoolAPiDbContext dbContext, IStudentRepsitory studentRepsitory) { this.studentRepsitory = studentRepsitory; this.dbContext = dbContext; this.mapper = mapper; }
public StudentServices(SchoolAPiDbContext dbContext) { this.dbContext = dbContext; }
public UserService(SchoolAPiDbContext dbContext) { this.dbContext = dbContext; }
public AuthServices(SchoolAPiDbContext dbContext) { this.dbContext = dbContext; }
public AttendanceController(SchoolAPiDbContext dbContext, IMapper mapper) { this.mapper = mapper; this.dbContext = dbContext; }
public HomeController(IUserRepository userRepository, SchoolAPiDbContext dbContext, IMapper mapper) { this.userRepository = userRepository; this.mapper = mapper; this.dbContext = dbContext; }