Skip to content

Commit

Permalink
fix: fixed member sorting order
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianKuesters committed Jul 25, 2024
1 parent dffa944 commit ff19007
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ public class TrackUserLoginCommandHandler : ICommandHandler<TrackUserLoginComman
{
public static int CallCount { get; private set; }

public Task HandleAsync(TrackUserLoginCommand command)
public static void ResetCallCount()
{
CallCount++;
return Task.CompletedTask;
CallCount = 0;
}

public static void ResetCallCount()
public Task HandleAsync(TrackUserLoginCommand command)
{
CallCount = 0;
CallCount++;
return Task.CompletedTask;
}
}

0 comments on commit ff19007

Please sign in to comment.