add command cqrs energy provider,rate,rateexception

This commit is contained in:
DavidGudEnough 2025-01-09 16:14:34 -05:00
parent aa61d945ed
commit 77fdada230
Signed by: david.nguyen
GPG Key ID: 0B95DC36355BEB37
15 changed files with 90 additions and 0 deletions

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Command.Energy;
public class CreateEnergyProviderCommand
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Command.Energy;
public class CreateEnergyRateCommand
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Command.Energy;
public class CreateEnergyRateExceptionCommand
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Command.Energy;
public class ServiceCollectionExtension
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Command.Energy;
public class UpdateEnergyProviderCommand
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Command.Energy;
public class UpdateEnergyRateExceptionCommand
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Service.Energy;
public class EnergyService
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Service.Energy.Options;
public class CreateEnergyProviderCommandOptions
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Service.Energy.Options;
public class CreateEnergyRateCommandOptions
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Service.Energy.Options;
public class CreateEnergyRateExceptionCommandOptions
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Service.Energy.Options;
public class DisableEnergyProviderCommandOptions
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Service.Energy.Options;
public class DisableEnergyRateCommandOptions
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Service.Energy.Options;
public class UpdateEnergyProviderCommandOptions
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Service.Energy.Options;
public class UpdateEnergyRateCommandOptions
{
}

View File

@ -0,0 +1,6 @@
namespace CH.CQRS.Service.Energy.Options;
public class UpdateEnergyRateExceptionCommandOptions
{
}