Пример #1
0
 public ComponentModel(
     string id,
     IEnumerable<ServiceModel> services,
     string limitTypeId,
     IDictionary<string, string> metadata,
     string targetComponentId,
     OwnershipModel ownership,
     SharingModel sharing,
     LifetimeModel lifetime,
     ActivatorModel activator)
 {
     if (id == null) throw new ArgumentNullException("id");
     if (services == null) throw new ArgumentNullException("services");
     if (limitTypeId == null) throw new ArgumentNullException("limitTypeId");
     if (metadata == null) throw new ArgumentNullException("metadata");
     if (targetComponentId == null) throw new ArgumentNullException("targetComponentId");
     _id = id;
     _limitTypeId = limitTypeId;
     _metadata = new Dictionary<string,string>(metadata);
     _services = services.ToArray();
     _targetComponentId = targetComponentId;
     _ownership = ownership;
     _sharing = sharing;
     _lifetime = lifetime;
     _activator = activator;
 }
Пример #2
0
 private void CreateOwnerships(SellModel sell)
 {
     foreach (SellPositionModel sellPosition in sell.SellPositions)
     {
         OwnershipModel ownership        = new OwnershipModel(sell.BuyerAccountExtension.AccountId, sellPosition.ConcretePart);
         OwnershipModel createdOwnership = OwnershipRepo.Create(ownership);
     }
 }
Пример #3
0
 public Component(string id, TypeData limitType, IEnumerable<Service> services, OwnershipModel ownership, SharingModel sharing, IDictionary<string, string> metadata, ActivatorModel activator, LifetimeModel lifetime, string targetComponentId = null)
 {
     if (limitType == null) throw new ArgumentNullException("limitType");
     if (services == null) throw new ArgumentNullException("services");
     if (metadata == null) throw new ArgumentNullException("metadata");
     _id = id;
     _limitType = limitType;
     _services = services.ToArray();
     _ownership = ownership;
     _sharing = sharing;
     _metadata = metadata;
     _activator = activator;
     _lifetime = lifetime;
     _targetComponentId = targetComponentId;
 }
Пример #4
0
 public ComponentModel(
     string id,
     IEnumerable <ServiceModel> services,
     string limitTypeId,
     IDictionary <string, string> metadata,
     string targetComponentId,
     OwnershipModel ownership,
     SharingModel sharing,
     LifetimeModel lifetime,
     ActivatorModel activator)
 {
     if (id == null)
     {
         throw new ArgumentNullException("id");
     }
     if (services == null)
     {
         throw new ArgumentNullException("services");
     }
     if (limitTypeId == null)
     {
         throw new ArgumentNullException("limitTypeId");
     }
     if (metadata == null)
     {
         throw new ArgumentNullException("metadata");
     }
     if (targetComponentId == null)
     {
         throw new ArgumentNullException("targetComponentId");
     }
     _id                = id;
     _limitTypeId       = limitTypeId;
     _metadata          = new Dictionary <string, string>(metadata);
     _services          = services.ToArray();
     _targetComponentId = targetComponentId;
     _ownership         = ownership;
     _sharing           = sharing;
     _lifetime          = lifetime;
     _activator         = activator;
 }
Пример #5
0
 public Component(string id, TypeData limitType, IEnumerable <Service> services, OwnershipModel ownership, SharingModel sharing, IDictionary <string, string> metadata, ActivatorModel activator, LifetimeModel lifetime, string targetComponentId = null)
 {
     if (limitType == null)
     {
         throw new ArgumentNullException("limitType");
     }
     if (services == null)
     {
         throw new ArgumentNullException("services");
     }
     if (metadata == null)
     {
         throw new ArgumentNullException("metadata");
     }
     _id                = id;
     _limitType         = limitType;
     _services          = services.ToArray();
     _ownership         = ownership;
     _sharing           = sharing;
     _metadata          = metadata;
     _activator         = activator;
     _lifetime          = lifetime;
     _targetComponentId = targetComponentId;
 }