async public Task Delete()
 {
     await _loginService.LogoutAsync();
 }
        async public Task <IActionResult> Delete()
        {
            await _loginService.LogoutAsync();

            return(Ok());
        }