public EZAuth(
			IHttpContextAccessor contextAccessor, 
			Cryptography cryptography, 
			IOptions<AuthOptions> authConfiguration,
			EZCourseContext context)
		{
			_httpContext = contextAccessor.HttpContext;
			_cryptography = cryptography;
			_authConfiguration = authConfiguration.Value;
            _context = context;
		}
 public UserManagementController(EZCourseContext context, Cryptography cryptography)
 {
     _context      = context;
     _cryptography = cryptography;
 }