/// <summary>
 /// The UploadMergedOrValidAcceptance
 /// </summary>
 /// <param name="value">The value<see cref="List{Boalf}"/></param>
 /// <param name="path">The path<see cref="string"/></param>
 /// <returns>The <see cref="Task"/></returns>
 private async Task UploadAcceptance(List <Boalf> value, string path)
 {
     try
     {
         if (value != null && value.Count > 0)
         {
             await writer.UpLoadFileBoalf(value, path);
         }
     }
     catch (Exception ex)
     {
         Log.Error(ex.Message);
         throw;
     }
 }