Example #1
0
 public KeyController(WrathIncarnateContext context)
 {
     _repository = new ApiRepository <ApiAccess>(context);
     _context    = context;
 }
Example #2
0
 public ApiAccess(WrathIncarnateContext context) : base(context)
 {
 }
Example #3
0
 public Clan(WrathIncarnateContext context) : base(context)
 {
 }
Example #4
0
 public ClanController(WrathIncarnateContext context)
 {
     _repository = new ApiRepository <Clan>(context);
     _context    = context;
 }
Example #5
0
 public ApiAccessProvider(WrathIncarnateContext context)
 {
     _context = context;
 }
Example #6
0
 public RoleController(WrathIncarnateContext context)
 {
     _repository = new ApiRepository <DiscordRole>(context);
     _context    = context;
 }
Example #7
0
 public ApiRepository(WrathIncarnateContext context)
 {
     context.connection.Open();
     _context = context;
 }
Example #8
0
 public Model(WrathIncarnateContext context)
 {
     _context = context;
 }
Example #9
0
 public DiscordRole(WrathIncarnateContext context) : base(context)
 {
 }