This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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 |