Skip to content

Instantly share code, notes, and snippets.

View Caballep's full-sized avatar

José Caballero Caballep

View GitHub Profile
//A Class should have responsability over a single part of the whole functionallity
//Maintainability, Testability, Flexibility, Extensibility, Parallel Development and Loose Coupling
interface IUser
{
bool Login(string userName, string password);
bool Register(string username, string password, string email);
}
interface ILogger