public StudentController(IMapper mapper, SchoolAPiDbContext dbContext, IStudentRepsitory studentRepsitory)
        {
            this.studentRepsitory = studentRepsitory;
            this.dbContext        = dbContext;

            this.mapper = mapper;
        }
Exemple #2
0
 public StudentServices(SchoolAPiDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public UserService(SchoolAPiDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemple #4
0
 public AuthServices(SchoolAPiDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemple #5
0
 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;
 }