public ObjectDataResponseAPI DeleteFile(FileDataRequestAPI fileDataRequestAPI)
 {
     try
     {
         throw new NotImplementedException("File delete is not currently enabled.");
     }
     catch (Exception exception)
     {
         throw BaseHttpUtils.GetWebException(HttpStatusCode.BadRequest, BaseHttpUtils.GetExceptionMessage(exception));
     }
 }
 public ObjectDataResponseAPI LoadFiles(FileDataRequestAPI fileDataRequestAPI)
 {
     try
     {
         return(SalesforceServiceSingleton.GetInstance().LoadFiles(this.GetWho(), fileDataRequestAPI));
     }
     catch (Exception exception)
     {
         throw BaseHttpUtils.GetWebException(HttpStatusCode.BadRequest, BaseHttpUtils.GetExceptionMessage(exception));
     }
 }