public override HttpResponseMessage Delete(int id, int organizationId)
 {
     return(_referenceService
            .DeleteByReferenceId(id)
            .Match(onSuccess: _ => Ok(), onFailure: FromOperationFailure));
 }