Exemple #1
0
 protected async Task RecordDataSyncStatusAsync(int insertedCount, int readedCount, DataSyncStatus dataSyncStatus, bool increaseTryCount = true)
 {
     if (readedCount != 0)
     {
         if (dataSyncStatus == null)
         {
             dataSyncStatus               = new DataSyncStatus();
             dataSyncStatus.Month         = yearMonth.Month;
             dataSyncStatus.Year          = yearMonth.Year;
             dataSyncStatus.InsertedCount = insertedCount;
             dataSyncStatus.ReadedCount   = readedCount;
             dataSyncStatus.ServiceName   = serviceName.ToString();
             unitOfWork.DataSyncStatusDataService.Insert(dataSyncStatus);
         }
         else
         {
             //dataSyncStatus.ReadedCount = readedCount;
             dataSyncStatus.InsertedCount += insertedCount;
             dataSyncStatus.TryCount      += 1;
             unitOfWork.DataSyncStatusDataService.Update(dataSyncStatus);
         }
         await unitOfWork.CommitAsync();
     }
 }
Exemple #2
0
 /// <summary>
 /// Converts the <see cref="sourceValue" /> parameter to the <see cref="destinationType" /> parameter using <see cref="formatProvider"
 /// /> and <see cref="ignoreCase" />
 /// </summary>
 /// <param name="sourceValue">the <see cref="System.Object"/> to convert from</param>
 /// <param name="destinationType">the <see cref="System.Type" /> to convert to</param>
 /// <param name="formatProvider">not used by this TypeConverter.</param>
 /// <param name="ignoreCase">when set to <c>true</c>, will ignore the case when converting.</param>
 /// <returns>
 /// an instance of <see cref="DataSyncStatus" />, or <c>null</c> if there is no suitable conversion.
 /// </returns>
 public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => DataSyncStatus.CreateFrom(sourceValue);