using JiShe.CollectBus.Protocol.Contracts.Models; using MassTransit; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.RabbitMQ.Consumers { public class MessageReceivedFaultConsumer: IConsumer>> { public Task Consume(ConsumeContext>> context) { throw new NotImplementedException(); } } }