IServiceBusReviceService.cs 342 B

1234567891011121314
  1. using Microsoft.Extensions.Hosting;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using TEAMModelOS.SDK.Context.Configuration;
  7. namespace TEAMModelOS.Service.Services.Learn.Interfaces
  8. {
  9. public interface IServiceBusReviceService
  10. {
  11. public void ReciveMessageAsync();
  12. }
  13. }