예제 #1
0
 public InfraUserStore(InfraEntities ctx)
 {
     _userbl  = new IdentityUserBL(ctx);
     _loginbl = new IdentityLoginBL(ctx);
 }
예제 #2
0
 public IdentityUserController(IIdentityUserBL bl)
 {
     //  _bl = new IdentityUserBL(System.Web.HttpContext.Current.GetOwinContext().Get<Core.Domain.InfraEntities>());
     _bl = new IdentityUserBL(new Core.Domain.InfraEntities());
 }
예제 #3
0
        //private readonly IIdentityApplicationBL _appbl;
        //private readonly IIdentityUserBL _userbl;
        //private readonly InfraEntities _ctx;

        //private IIdentityApplicationBL _appbl;
        //private IIdentityUserBL _userbl;
        public InfraOAuthProvider(IIdentityApplicationBL appbl, IIdentityUserBL userbl, InfraEntities ctx)
        {
            //_appbl = appbl;
            //_userbl = userbl;
            //_ctx = ctx;
        }