/// <summary> /// Gets an AccountUser matching the identifier /// </summary> /// <param name="id">The identifier.</param> /// <param name="includes">The includes.</param> /// <returns> /// The matching AccountUser /// </returns> /// <remarks> /// GET: api/accountusers/{id} /// </remarks> public AccountUser Get(string id, string includes = "") { return(accountUserService.GetAccountUser(id, includes)); }