/// <summary>
        /// Udførelse af kommandoen.
        /// </summary>
        /// <param name="command">Command til tilføjelse af en gruppe til budgetkonti.</param>
        /// <returns>Oprettet gruppe til budgetkonti.</returns>
        public BudgetkontogruppeView Execute(BudgetkontogruppeAddCommand command)
        {
            if (command == null)
            {
                throw new ArgumentNullException("command");
            }

            var budgetkontogruppe = new Budgetkontogruppe(command.Nummer, command.Navn);

            var oprettetBudgetkontogruppe = _finansstyringRepository.BudgetkontogruppeAdd(budgetkontogruppe.Nummer,
                                                                                          budgetkontogruppe.Navn);

            return(_objectMapper.Map <Budgetkontogruppe, BudgetkontogruppeView>(oprettetBudgetkontogruppe));
        }