-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
- Loading branch information
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using Shared.Features.CQRS.Command; | ||
|
||
namespace Modules.Subscriptions.Features.DomainFeatures.StripeSubscriptionAggregate.Application.Commands | ||
{ | ||
public class UpdateSubscriptionPeriod : ICommand | ||
Check failure on line 5 in Source/Modules/Subscriptions/Features/DomainFeatures/StripeSubscriptionAggregate/Application/Commands/UpdateSubscriptionPeriod.cs GitHub Actions / build
Check failure on line 5 in Source/Modules/Subscriptions/Features/DomainFeatures/StripeSubscriptionAggregate/Application/Commands/UpdateSubscriptionPeriod.cs GitHub Actions / build
|
||
{ | ||
public Stripe.Subscription Subscription { get; set; } | ||
} | ||
|
||
public class UpdateSubscriptionPerioEndCommandHandler : ICommandHandler<UpdateSubscriptionPeriod> | ||
Check failure on line 10 in Source/Modules/Subscriptions/Features/DomainFeatures/StripeSubscriptionAggregate/Application/Commands/UpdateSubscriptionPeriod.cs GitHub Actions / build
Check failure on line 10 in Source/Modules/Subscriptions/Features/DomainFeatures/StripeSubscriptionAggregate/Application/Commands/UpdateSubscriptionPeriod.cs GitHub Actions / build
|
||
{ | ||
public Task HandleAsync(UpdateSubscriptionPeriod command, CancellationToken cancellationToken) | ||
Check failure on line 12 in Source/Modules/Subscriptions/Features/DomainFeatures/StripeSubscriptionAggregate/Application/Commands/UpdateSubscriptionPeriod.cs GitHub Actions / build
Check failure on line 12 in Source/Modules/Subscriptions/Features/DomainFeatures/StripeSubscriptionAggregate/Application/Commands/UpdateSubscriptionPeriod.cs GitHub Actions / build
|
||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |
This file was deleted.