using System.Collections.Generic; using Chernobyl.Collections.Generic.Event; namespace Chernobyl.Account.Concrete { /// /// The basic implementation of . /// public class User : DecoratingEventEnumerable, IUser { /// /// Initializes a new instance of the class. /// /// The being /// decorated or extended with event capabilities. public User(IEnumerable enumerable) : base(enumerable) {} } }