/// <summary> /// Retrieves the <see cref="IClerk"/> instance associated with the <paramref name="id"/>. /// </summary> /// <param name="id">Type: <see cref="String"/><para>The unique ID of the <see cref="IClerk"/> desired.</param> /// <returns>Type: <see cref="IClerk"/><para>The instance associated with the <paramref name="id"/>. If not found, NULL will be returned.</para></returns> public IClerk GetClerk(string id) { return(_Handler.GetPlugin(id)); }
/// <summary> /// Retrieves the <see cref="IClerk"/> instance associated with the <paramref name="id"/>. /// </summary> /// <param name="id">Type: <see cref="String"/><para>The unique ID of the <see cref="IClerk"/> desired.</param> /// <returns>Type: <see cref="IAmbassador"/><para>The instance associated with the <paramref name="id"/>. If not found, NULL will be returned.</para></returns> public IAmbassador GetAmbassador(string id) { return(_Handler.GetPlugin(id)); }