private void OnCreate(Window window)
        {
            var categories = Category == null ? new int[0] : new[] { Category.Id };

            _repositoryViewModel.CreatePayment(Wallet.Id, Type, Name, Date, Amount, categories);

            window.Close();
        }