public static PersonnelManager Create(IdentityFactoryOptions <PersonnelManager> options, IOwinContext context) { var store = new PersonnelStore(context.Get <NeshagostarContext>()); var manager = new PersonnelManager(store); return(manager); }
public PersonnelSignInManager(PersonnelManager userManager, IAuthenticationManager authenticationManager) : base(userManager, authenticationManager) { }