/// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="wikis">The wikis this wiki belongs to</param>
 /// <param name="page">The page of this wiki</param>
 public WikiController(Client client, WikisController wikis, string page)
     : base(client)
 {
     Wikis = wikis;
     Page = page;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="client">A handle to the client</param>
 /// <param name="wikis">The wikis this wiki belongs to</param>
 /// <param name="page">The page of this wiki</param>
 public WikiController(Client client, WikisController wikis, string page)
     : base(client)
 {
     Wikis = wikis;
     Page  = page;
 }