protected override async Task ManageRepositoryAsync(ICreateBudgetAccountGroupCommand command)
        {
            NullGuard.NotNull(command, nameof(command));

            IBudgetAccountGroup budgetAccountGroup = command.ToDomain();

            await AccountingRepository.CreateBudgetAccountGroupAsync(budgetAccountGroup);
        }