Ejemplo n.º 1
0
 /// <summary>
 /// Starts a view to show all the user in the database.
 /// </summary>
 /// <param name="db">The location of the database containing all the users</param>
 /// <param name="view">The view on which the users should be shown.</param>
 internal static void GetUsers(IRepository <User> db, IAdminView view)
 {
     InitUsers(db, view);
     view.ShowUserOverview(_users);
 }