IServiceBusService.cs 382 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using TEAMModelOS.SDK.Context.Configuration;
  6. namespace TEAMModelOS.Service.Services.Learn.Interfaces
  7. {
  8. public interface IServiceBusService : IBusinessService
  9. {
  10. public Task<long> SendMessage<T>(string TopicName, string info, long startTime,int status);
  11. }
  12. }