diff --git a/CH.CQRS/Command/Energy/CreateEnergyProviderCommand.cs b/CH.CQRS/Command/Energy/CreateEnergyProviderCommand.cs new file mode 100644 index 0000000..e52e2e6 --- /dev/null +++ b/CH.CQRS/Command/Energy/CreateEnergyProviderCommand.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Command.Energy; + +public class CreateEnergyProviderCommand +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Command/Energy/CreateEnergyRateCommand.cs b/CH.CQRS/Command/Energy/CreateEnergyRateCommand.cs new file mode 100644 index 0000000..ad73d62 --- /dev/null +++ b/CH.CQRS/Command/Energy/CreateEnergyRateCommand.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Command.Energy; + +public class CreateEnergyRateCommand +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Command/Energy/CreateEnergyRateExceptionCommand.cs b/CH.CQRS/Command/Energy/CreateEnergyRateExceptionCommand.cs new file mode 100644 index 0000000..f2958d0 --- /dev/null +++ b/CH.CQRS/Command/Energy/CreateEnergyRateExceptionCommand.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Command.Energy; + +public class CreateEnergyRateExceptionCommand +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Command/Energy/ServiceCollectionExtension.cs b/CH.CQRS/Command/Energy/ServiceCollectionExtension.cs new file mode 100644 index 0000000..410215a --- /dev/null +++ b/CH.CQRS/Command/Energy/ServiceCollectionExtension.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Command.Energy; + +public class ServiceCollectionExtension +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Command/Energy/UpdateEnergyProviderCommand.cs b/CH.CQRS/Command/Energy/UpdateEnergyProviderCommand.cs new file mode 100644 index 0000000..96cff39 --- /dev/null +++ b/CH.CQRS/Command/Energy/UpdateEnergyProviderCommand.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Command.Energy; + +public class UpdateEnergyProviderCommand +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Command/Energy/UpdateEnergyRateExceptionCommand.cs b/CH.CQRS/Command/Energy/UpdateEnergyRateExceptionCommand.cs new file mode 100644 index 0000000..bc924c9 --- /dev/null +++ b/CH.CQRS/Command/Energy/UpdateEnergyRateExceptionCommand.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Command.Energy; + +public class UpdateEnergyRateExceptionCommand +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Service/Energy/EnergyService.cs b/CH.CQRS/Service/Energy/EnergyService.cs new file mode 100644 index 0000000..c8cc19a --- /dev/null +++ b/CH.CQRS/Service/Energy/EnergyService.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Service.Energy; + +public class EnergyService +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Service/Energy/Options/CreateEnergyProviderCommandOptions.cs b/CH.CQRS/Service/Energy/Options/CreateEnergyProviderCommandOptions.cs new file mode 100644 index 0000000..dbb1353 --- /dev/null +++ b/CH.CQRS/Service/Energy/Options/CreateEnergyProviderCommandOptions.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Service.Energy.Options; + +public class CreateEnergyProviderCommandOptions +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Service/Energy/Options/CreateEnergyRateCommandOptions.cs b/CH.CQRS/Service/Energy/Options/CreateEnergyRateCommandOptions.cs new file mode 100644 index 0000000..b3316be --- /dev/null +++ b/CH.CQRS/Service/Energy/Options/CreateEnergyRateCommandOptions.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Service.Energy.Options; + +public class CreateEnergyRateCommandOptions +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Service/Energy/Options/CreateEnergyRateExceptionCommandOptions.cs b/CH.CQRS/Service/Energy/Options/CreateEnergyRateExceptionCommandOptions.cs new file mode 100644 index 0000000..8fb87c4 --- /dev/null +++ b/CH.CQRS/Service/Energy/Options/CreateEnergyRateExceptionCommandOptions.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Service.Energy.Options; + +public class CreateEnergyRateExceptionCommandOptions +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Service/Energy/Options/DisableEnergyProviderCommandOptions.cs b/CH.CQRS/Service/Energy/Options/DisableEnergyProviderCommandOptions.cs new file mode 100644 index 0000000..f0fc843 --- /dev/null +++ b/CH.CQRS/Service/Energy/Options/DisableEnergyProviderCommandOptions.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Service.Energy.Options; + +public class DisableEnergyProviderCommandOptions +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Service/Energy/Options/DisableEnergyRateCommandOptions.cs b/CH.CQRS/Service/Energy/Options/DisableEnergyRateCommandOptions.cs new file mode 100644 index 0000000..ddffc2c --- /dev/null +++ b/CH.CQRS/Service/Energy/Options/DisableEnergyRateCommandOptions.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Service.Energy.Options; + +public class DisableEnergyRateCommandOptions +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Service/Energy/Options/UpdateEnergyProviderCommandOptions.cs b/CH.CQRS/Service/Energy/Options/UpdateEnergyProviderCommandOptions.cs new file mode 100644 index 0000000..1787979 --- /dev/null +++ b/CH.CQRS/Service/Energy/Options/UpdateEnergyProviderCommandOptions.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Service.Energy.Options; + +public class UpdateEnergyProviderCommandOptions +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Service/Energy/Options/UpdateEnergyRateCommandOptions.cs b/CH.CQRS/Service/Energy/Options/UpdateEnergyRateCommandOptions.cs new file mode 100644 index 0000000..36bb578 --- /dev/null +++ b/CH.CQRS/Service/Energy/Options/UpdateEnergyRateCommandOptions.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Service.Energy.Options; + +public class UpdateEnergyRateCommandOptions +{ + +} \ No newline at end of file diff --git a/CH.CQRS/Service/Energy/Options/UpdateEnergyRateExceptionCommandOptions.cs b/CH.CQRS/Service/Energy/Options/UpdateEnergyRateExceptionCommandOptions.cs new file mode 100644 index 0000000..9ed008e --- /dev/null +++ b/CH.CQRS/Service/Energy/Options/UpdateEnergyRateExceptionCommandOptions.cs @@ -0,0 +1,6 @@ +namespace CH.CQRS.Service.Energy.Options; + +public class UpdateEnergyRateExceptionCommandOptions +{ + +} \ No newline at end of file