Quando eu coloca para compilar Funcionario.Autenticador, em vez de retornar o Console.WriteLine especificado, ele me retorna True.
using OnWallet.Employees; using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks;
namespace OnWallet.Systems { public class InnerSystem { public bool Login(IAutenticate employee, string password) {
bool userAutenticated = employee.Autenticater(password);
if (userAutenticated)
{
Console.WriteLine("Welcome to the system!");
return true;
}
else
{
Console.WriteLine("Password incorrect!");
return false;
}
}
}
}
insira seu código aqui