protected override void ServicesConfiguration(IServiceCollection services) { _fakeQuery = A.Fake <IQueryPlantEvents>(); services.AddSingleton(_fakeQuery); _fakeCommand = A.Fake <ICommandPlantEvents>(); services.AddSingleton(_fakeCommand); }
public PlantEventsController(IQueryPlantEvents queries, ICommandPlantEvents commands, IMapper mapper) { _queries = queries; _commands = commands; _mapper = mapper; }