Пример #1
0
 internal Source(string id, SourceType type)
 {
     Id         = string.IsNullOrWhiteSpace(id) ? Guid.NewGuid().ToString() : id;
     SourceType = type;
 }
 internal BaseSource(string id, SourceType type) : base(id, type)
 {
 }