IDataCollectionCallback.cs 328 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Core.RT.DataCollection
  6. {
  7. public interface IDataCollectionCallback
  8. {
  9. void PostDBFailedEvent();
  10. string GetDBName();
  11. string GetSqlUpdateFile();
  12. string GetDataTablePrefix();
  13. }
  14. }