public retrieveRecord(entityLogicalName: string, id: string, options: string): Xrm.Async.PromiseLike<any> {
    if (this.isOffline) {
      return this.offline.retrieveRecord(entityLogicalName, id, options);
    } else {
      return this.online.retrieveRecord(entityLogicalName, id, options);