Exemplo n.º 1
0
 public FollowersController(IShouterContext context)
 {
     this.data          = new ShouterData(context);
     this.signInManager = new SignInManager(this.data.Context);
 }
 public HomeController(IShouterContext context)
 {
     this.context       = context;
     this.signInManager = new SignInManager(this.context);
 }
Exemplo n.º 3
0
 public SignInManager(IShouterContext context)
 {
     this.context = context;
 }
Exemplo n.º 4
0
 public SessionService(IShouterContext context)
 {
     this.context = context;
 }
Exemplo n.º 5
0
 public UserService(IShouterContext context)
 {
     this.context = context;
 }
 public LoginRepository(IShouterContext context)
     : base(context)
 {
 }
Exemplo n.º 7
0
 public ShouterData(IShouterContext context)
 {
     this.context = context;
 }
 public UserRepository(IShouterContext context) : base(context)
 {
 }
Exemplo n.º 9
0
 public NotificationRepository(IShouterContext context) : base(context)
 {
 }
 public Repository(IShouterContext context)
 {
     this.EntityTable = context.Set <T>();
 }
 public UsersController(IShouterContext context)
 {
     this.context = context;
 }
Exemplo n.º 12
0
 public ShaoutRepository(IShouterContext context) : base(context)
 {
 }