Ejemplo n.º 1
0
 public UserController(
     RowinContext dbContext,
     UserManager <User> userManager,
     IEmailService emailService, RoleManager <IdentityRole <int> > roleManager,
     ICsvWriter csvWriter)
 {
     this.dbContext    = dbContext;
     this.userManager  = userManager;
     this.emailService = emailService;
     this.roleManager  = roleManager;
     this.csvWriter    = csvWriter;
     telemetryClient   = new TelemetryClient();
 }
Ejemplo n.º 2
0
 public ScheduleController(IHttpContextAccessor contextAccessor, RowinContext dbContext)
 {
     this.contextAccessor = contextAccessor;
     this.dbContext       = dbContext;
     telemetryClient      = new TelemetryClient();
 }
Ejemplo n.º 3
0
 public CourseTypeController(RowinContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public SubscriptionController(RowinContext dbContext)
 {
     this.dbContext = dbContext;
 }
Ejemplo n.º 5
0
 public LocationController(RowinContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public TimetableController(RowinContext dbContext)
 {
     this.dbContext = dbContext;
 }