| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace Abp.UI.Inputs
- {
- public class StaticLocalizableComboboxItemSource : ILocalizableComboboxItemSource
- {
- public ICollection<ILocalizableComboboxItem> Items { get; private set; }
- public StaticLocalizableComboboxItemSource(params ILocalizableComboboxItem[] items)
- {
- if (items == null)
- {
- throw new ArgumentNullException("items");
- }
- if (items.Length <= 0)
- {
- throw new ArgumentException("Items can not be empty!");
- }
- Items = items;
- }
- }
- }
|