Ejemplo n.º 1
0
        public static PersonnelManager Create(IdentityFactoryOptions <PersonnelManager> options, IOwinContext context)
        {
            var store   = new PersonnelStore(context.Get <NeshagostarContext>());
            var manager = new PersonnelManager(store);

            return(manager);
        }
Ejemplo n.º 2
0
 public PersonnelSignInManager(PersonnelManager userManager, IAuthenticationManager authenticationManager)
     : base(userManager, authenticationManager)
 {
 }