public AccountController(ApplicationUserManager userManager,
                          ISecureDataFormat <AuthenticationTicket> accessTokenFormat,
                          BreakPointDBContext context)
 {
     UserManager       = userManager;
     AccessTokenFormat = accessTokenFormat;
     this.context      = context;
 }
Пример #2
0
 public Service(BreakPointDBContext context)
 {
     this.Context = context;
 }
 public ProfileService(BreakPointDBContext context)
     : base(context)
 {
 }