26 lines
		
	
	
		
			548 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			548 B
		
	
	
	
		
			C#
		
	
	
| using IRaCIS.Core.Application.MassTransit.Command;
 | |
| using MassTransit;
 | |
| using MassTransit.Scheduling;
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace IRaCIS.Core.Application.MassTransit.Consumer;
 | |
| 
 | |
| 
 | |
| 
 | |
| public class QCImageQuestionScheduleConsumer : IConsumer<QCImageQuestionRecurringSchedule>
 | |
| {
 | |
|     public Task Consume(ConsumeContext<QCImageQuestionRecurringSchedule> context)
 | |
|     {
 | |
|         Console.WriteLine(DateTime.Now);
 | |
| 
 | |
|         return Task.CompletedTask;
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 | |
| 
 |