create(body: {}): Promise<any> {
    const url = `${this.configuration.routes.patients}`;
    return super.postRequest(url, body);
  }