Esempio n. 1
0
        public ChatController(ITeamService teams, UserManager <Ideal.Data.Models.User> userManager, IdealDbContext ctx)

        {
            this._userManager = userManager;
            this.teams        = teams;
            this._context     = ctx;
        }
Esempio n. 2
0
 public AdminService(IdealDbContext db)
 {
     this.db = db;
 }
Esempio n. 3
0
 public IdeaService(IdealDbContext db, IMapper mapper)
 {
     this.db     = db;
     this.mapper = mapper;
 }
Esempio n. 4
0
 public UserService(IdealDbContext db)
 {
     this.db = db;
 }
Esempio n. 5
0
 public ChatroomController(UserManager <Ideal.Data.Models.User> userManager, IdealDbContext ctx, IConnectionManager connectionManager)
     : base(connectionManager)
 {
     _userManager = userManager;
     _context     = ctx;
 }
Esempio n. 6
0
 public TeamService(IdealDbContext db)
 {
     this.db = db;
 }