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

            this.mapper = mapper;
        }
Exemplo n.º 2
0
 public StudentServices(SchoolAPiDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 3
0
 public UserService(SchoolAPiDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 4
0
 public AuthServices(SchoolAPiDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 5
0
 public AttendanceController(SchoolAPiDbContext dbContext, IMapper mapper)
 {
     this.mapper    = mapper;
     this.dbContext = dbContext;
 }
Exemplo n.º 6
0
 public HomeController(IUserRepository userRepository, SchoolAPiDbContext dbContext, IMapper mapper)
 {
     this.userRepository = userRepository;
     this.mapper         = mapper;
     this.dbContext      = dbContext;
 }