Beispiel #1
0
 public static ICqrsConfigurer AddTasteCommandsRoute(this ICqrsConfigurer configurer)
 {
     configurer.AddCommandsRouteFromAssemblyOfType <AddOrUpdateSuggestionCommand>("Taste");
     return(configurer);
 }
Beispiel #2
0
        public static ICqrsConfigurer AddVehicleCommandsRoute(this ICqrsConfigurer configurer)
        {
            configurer.AddCommandsRouteFromAssemblyOfType <AddVehicleCommand>(Queues.Vehicle.QueueName);

            return(configurer);
        }
Beispiel #3
0
 public static ICqrsConfigurer AddCatalogCommandsRoute(this ICqrsConfigurer configurer)
 {
     configurer.AddCommandsRouteFromAssemblyOfType <AddOrUpdateMovieCommand>("Catalog");
     return(configurer);
 }
Beispiel #4
0
        public static ICqrsConfigurer AddCatalogCommandsRoute(this ICqrsConfigurer configurer)
        {
            configurer.AddCommandsRouteFromAssemblyOfType <AddMovieCommand>(Queues.Catalog.QueueName);

            return(configurer);
        }
Beispiel #5
0
        public static ICqrsConfigurer AddTasteCommandsRoute(this ICqrsConfigurer configurer)
        {
            configurer.AddCommandsRouteFromAssemblyOfType <EvaluateSuggestionCommand>(Queues.Taste.QueueName);

            return(configurer);
        }