// Fields
 // Results
 // Business constructor
 public Acknowledge(
     Message message
     )
 {
     InitializeResults();
     _message = new PredecessorObj<Message>(this, RoleMessage, message);
 }
Exemple #2
0
        // Fields

        // Results

        // Business constructor
        public ShareDelete(
            Share share
            )
        {
            InitializeResults();
            _share = new PredecessorObj <Share>(this, GetRoleShare(), share);
        }
Exemple #3
0
 // Hydration constructor
 private CloudCentralThought(FactMemento memento)
 {
     InitializeResults();
     _cloud = new PredecessorObj <Cloud>(this, RoleCloud, memento);
     _prior = new PredecessorList <CloudCentralThought>(this, RolePrior, memento);
     _value = new PredecessorObj <Thought>(this, RoleValue, memento);
 }
Exemple #4
0
 // Business constructor
 public Thought(
     Cloud cloud
     )
 {
     _unique = Guid.NewGuid();
     InitializeResults();
     _cloud = new PredecessorObj <Cloud>(this, RoleCloud, cloud);
 }
Exemple #5
0
        // Fields

        // Results

        // Business constructor
        public DisableToastNotification(
            Identity identity
            )
        {
            _unique = Guid.NewGuid();
            InitializeResults();
            _identity = new PredecessorObj <Identity>(this, RoleIdentity, identity);
        }
Exemple #6
0
        // Fields

        // Results

        // Business constructor
        public EnableToastNotification(
            Individual individual
            )
        {
            _unique = Guid.NewGuid();
            InitializeResults();
            _individual = new PredecessorObj <Individual>(this, GetRoleIndividual(), individual);
        }
Exemple #7
0
 // Business constructor
 public Cloud(
     Identity creator
     )
 {
     _unique = Guid.NewGuid();
     InitializeResults();
     _creator = new PredecessorObj <Identity>(this, RoleCreator, creator);
 }
Exemple #8
0
        // Fields

        // Results

        // Business constructor
        public Share(
            Identity recipient
            , Cloud cloud
            )
        {
            InitializeResults();
            _recipient = new PredecessorObj <Identity>(this, RoleRecipient, recipient);
            _cloud     = new PredecessorObj <Cloud>(this, RoleCloud, cloud);
        }
        // Fields

        // Results

        // Business constructor
        public Like(
            Individual individual
            , Tune tune
            )
        {
            InitializeResults();
            _individual = new PredecessorObj <Individual>(this, GetRoleIndividual(), individual);
            _tune       = new PredecessorObj <Tune>(this, GetRoleTune(), tune);
        }
Exemple #10
0
        // Fields

        // Results

        // Business constructor
        public Share(
            Individual individual
            , MessageBoard messageBoard
            )
        {
            _unique = Guid.NewGuid();
            InitializeResults();
            _individual   = new PredecessorObj <Individual>(this, GetRoleIndividual(), individual);
            _messageBoard = new PredecessorObj <MessageBoard>(this, GetRoleMessageBoard(), messageBoard);
        }
 // Business constructor
 public Account(
     Company company
     ,int type
     )
 {
     _unique = Guid.NewGuid();
     InitializeResults();
     _company = new PredecessorObj<Company>(this, GetRoleCompany(), company);
     _type = type;
 }
Exemple #12
0
        // Fields

        // Results

        // Business constructor
        public CloudCentralThought(
            Cloud cloud
            , IEnumerable <CloudCentralThought> prior
            , Thought value
            )
        {
            InitializeResults();
            _cloud = new PredecessorObj <Cloud>(this, RoleCloud, cloud);
            _prior = new PredecessorList <CloudCentralThought>(this, RolePrior, prior);
            _value = new PredecessorObj <Thought>(this, RoleValue, value);
        }
        // Results

        // Business constructor
        public Individual__name(
            Individual individual
            , IEnumerable <Individual__name> prior
            , string value
            )
        {
            InitializeResults();
            _individual = new PredecessorObj <Individual>(this, GetRoleIndividual(), individual);
            _prior      = new PredecessorList <Individual__name>(this, GetRolePrior(), prior);
            _value      = value;
        }
Exemple #14
0
        // Results

        // Business constructor
        public ThoughtText(
            Thought thought
            , IEnumerable <ThoughtText> prior
            , string value
            )
        {
            InitializeResults();
            _thought = new PredecessorObj <Thought>(this, RoleThought, thought);
            _prior   = new PredecessorList <ThoughtText>(this, RolePrior, prior);
            _value   = value;
        }
Exemple #15
0
        // Results

        // Business constructor
        public Message(
            MessageBoard messageBoard
            , Domain domain
            , string text
            )
        {
            _unique = Guid.NewGuid();
            InitializeResults();
            _messageBoard = new PredecessorObj <MessageBoard>(this, GetRoleMessageBoard(), messageBoard);
            _domain       = new PredecessorObj <Domain>(this, GetRoleDomain(), domain);
            _text         = text;
        }
 // Hydration constructor
 private Closed(FactMemento memento)
 {
     InitializeResults();
     _delivered = new PredecessorObj<Delivered>(this, RoleDelivered, memento);
 }
 // Hydration constructor
 private City(FactMemento memento)
 {
     InitializeResults();
     _company = new PredecessorObj<Company>(this, RoleCompany, memento);
 }
 // Hydration constructor
 private Pull(FactMemento memento)
 {
     InitializeResults();
     _order = new PredecessorObj<Order>(this, RoleOrder, memento);
     _kitchen = new PredecessorObj<Kitchen>(this, RoleKitchen, memento);
 }
 // Hydration constructor
 private ProvisionKitchen(FactMemento memento)
 {
     InitializeResults();
     _machine = new PredecessorObj<Machine>(this, RoleMachine, memento);
     _kitchen = new PredecessorObj<Kitchen>(this, RoleKitchen, memento);
 }
 // Hydration constructor
 private ProvisionFrontOffice(FactMemento memento)
 {
     InitializeResults();
     _machine = new PredecessorObj<Machine>(this, RoleMachine, memento);
     _company = new PredecessorObj<Company>(this, RoleCompany, memento);
 }
 // Business constructor
 public Order(
     Company company
     )
 {
     _unique = Guid.NewGuid();
     InitializeResults();
     _company = new PredecessorObj<Company>(this, RoleCompany, company);
 }
 // Hydration constructor
 private DeprovisionFrontOffice(FactMemento memento)
 {
     InitializeResults();
     _provision = new PredecessorObj<ProvisionFrontOffice>(this, RoleProvision, memento);
 }
Exemple #23
0
 // Hydration constructor
 private ThoughtText(FactMemento memento)
 {
     InitializeResults();
     _thought = new PredecessorObj <Thought>(this, RoleThought, memento);
     _prior   = new PredecessorList <ThoughtText>(this, RolePrior, memento);
 }
Exemple #24
0
 // Hydration constructor
 private Thought(FactMemento memento)
 {
     InitializeResults();
     _cloud = new PredecessorObj <Cloud>(this, RoleCloud, memento);
 }
Exemple #25
0
 // Hydration constructor
 private ShareDelete(FactMemento memento)
 {
     InitializeResults();
     _share = new PredecessorObj <Share>(this, GetRoleShare(), memento, Share.GetUnloadedInstance, Share.GetNullInstance);
 }
Exemple #26
0
 // Hydration constructor
 private Share(FactMemento memento)
 {
     InitializeResults();
     _recipient = new PredecessorObj <Identity>(this, RoleRecipient, memento);
     _cloud     = new PredecessorObj <Cloud>(this, RoleCloud, memento);
 }
 // Hydration constructor
 private Commitment(FactMemento memento)
 {
     InitializeResults();
     _pull = new PredecessorObj<Pull>(this, RolePull, memento);
     _cakeDetail = new PredecessorList<CakeDetail>(this, RoleCakeDetail, memento);
     _prior = new PredecessorList<Commitment>(this, RolePrior, memento);
 }
 // Hydration constructor
 private DeprovisionKitchen(FactMemento memento)
 {
     InitializeResults();
     _provision = new PredecessorObj<ProvisionKitchen>(this, RoleProvision, memento);
 }
Exemple #29
0
 // Hydration constructor
 private Share(FactMemento memento)
 {
     InitializeResults();
     _individual   = new PredecessorObj <Individual>(this, GetRoleIndividual(), memento, Individual.GetUnloadedInstance, Individual.GetNullInstance);
     _messageBoard = new PredecessorObj <MessageBoard>(this, GetRoleMessageBoard(), memento, MessageBoard.GetUnloadedInstance, MessageBoard.GetNullInstance);
 }
Exemple #30
0
 // Hydration constructor
 private Message(FactMemento memento)
 {
     InitializeResults();
     _messageBoard = new PredecessorObj <MessageBoard>(this, GetRoleMessageBoard(), memento, MessageBoard.GetUnloadedInstance, MessageBoard.GetNullInstance);
     _domain       = new PredecessorObj <Domain>(this, GetRoleDomain(), memento, Domain.GetUnloadedInstance, Domain.GetNullInstance);
 }
 // Fields
 // Results
 // Business constructor
 public DeprovisionKitchen(
     ProvisionKitchen provision
     )
 {
     InitializeResults();
     _provision = new PredecessorObj<ProvisionKitchen>(this, RoleProvision, provision);
 }
Exemple #32
0
 // Hydration constructor
 private DisableToastNotification(FactMemento memento)
 {
     InitializeResults();
     _identity = new PredecessorObj <Identity>(this, RoleIdentity, memento);
 }
 // Hydration constructor
 private CakeDetail(FactMemento memento)
 {
     InitializeResults();
     _order = new PredecessorObj<Order>(this, RoleOrder, memento);
     _size = new PredecessorObj<CakeSize>(this, RoleSize, memento);
     _cakeFlavor = new PredecessorObj<CakeFlavor>(this, RoleCakeFlavor, memento);
     _frostingFlavor = new PredecessorObj<FrostingFlavor>(this, RoleFrostingFlavor, memento);
     _mainColor = new PredecessorObj<FrostingColor>(this, RoleMainColor, memento);
     _decorationColor = new PredecessorObj<FrostingColor>(this, RoleDecorationColor, memento);
     _prior = new PredecessorList<CakeDetail>(this, RolePrior, memento);
 }
 // Hydration constructor
 private Individual__name(FactMemento memento)
 {
     InitializeResults();
     _individual = new PredecessorObj <Individual>(this, GetRoleIndividual(), memento, Individual.GetUnloadedInstance, Individual.GetNullInstance);
     _prior      = new PredecessorList <Individual__name>(this, GetRolePrior(), memento, Individual__name.GetUnloadedInstance, Individual__name.GetNullInstance);
 }
 // Business constructor
 public ProvisionFrontOffice(
     Machine machine
     ,Company company
     )
 {
     _unique = Guid.NewGuid();
     InitializeResults();
     _machine = new PredecessorObj<Machine>(this, RoleMachine, machine);
     _company = new PredecessorObj<Company>(this, RoleCompany, company);
 }
 // Hydration constructor
 private Completed(FactMemento memento)
 {
     InitializeResults();
     _commitment = new PredecessorObj<Commitment>(this, RoleCommitment, memento);
 }
 // Business constructor
 public ProvisionKitchen(
     Machine machine
     ,Kitchen kitchen
     )
 {
     _unique = Guid.NewGuid();
     InitializeResults();
     _machine = new PredecessorObj<Machine>(this, RoleMachine, machine);
     _kitchen = new PredecessorObj<Kitchen>(this, RoleKitchen, kitchen);
 }
 // Hydration constructor
 private ContactInformation(FactMemento memento)
 {
     InitializeResults();
     _order = new PredecessorObj<Order>(this, RoleOrder, memento);
     _prior = new PredecessorList<ContactInformation>(this, RolePrior, memento);
 }
 // Business constructor
 public Pull(
     Order order
     ,Kitchen kitchen
     )
 {
     InitializeResults();
     _order = new PredecessorObj<Order>(this, RoleOrder, order);
     _kitchen = new PredecessorObj<Kitchen>(this, RoleKitchen, kitchen);
 }
 // Hydration constructor
 private Delivered(FactMemento memento)
 {
     InitializeResults();
     _completed = new PredecessorObj<Completed>(this, RoleCompleted, memento);
     _deliveryDetail = new PredecessorObj<DeliveryDetail>(this, RoleDeliveryDetail, memento);
 }
 // Results
 // Business constructor
 public City(
     Company company
     ,string name
     )
 {
     InitializeResults();
     _company = new PredecessorObj<Company>(this, RoleCompany, company);
     _name = name;
 }
Exemple #42
0
 // Hydration constructor
 private EnableToastNotification(FactMemento memento)
 {
     InitializeResults();
     _individual = new PredecessorObj <Individual>(this, GetRoleIndividual(), memento, Individual.GetUnloadedInstance, Individual.GetNullInstance);
 }
 // Fields
 // Results
 // Business constructor
 public Closed(
     Delivered delivered
     )
 {
     InitializeResults();
     _delivered = new PredecessorObj<Delivered>(this, RoleDelivered, delivered);
 }
 // Hydration constructor
 private DeliveryDetail(FactMemento memento)
 {
     InitializeResults();
     _order = new PredecessorObj<Order>(this, RoleOrder, memento);
     _city = new PredecessorObj<City>(this, RoleCity, memento);
     _prior = new PredecessorList<DeliveryDetail>(this, RolePrior, memento);
 }
 // Business constructor
 public Commitment(
     Pull pull
     ,IEnumerable<CakeDetail> cakeDetail
     ,IEnumerable<Commitment> prior
     )
 {
     InitializeResults();
     _pull = new PredecessorObj<Pull>(this, RolePull, pull);
     _cakeDetail = new PredecessorList<CakeDetail>(this, RoleCakeDetail, cakeDetail);
     _prior = new PredecessorList<Commitment>(this, RolePrior, prior);
 }
 // Fields
 // Results
 // Business constructor
 public DeprovisionFrontOffice(
     ProvisionFrontOffice provision
     )
 {
     InitializeResults();
     _provision = new PredecessorObj<ProvisionFrontOffice>(this, RoleProvision, provision);
 }
 // Business constructor
 public Completed(
     Commitment commitment
     )
 {
     InitializeResults();
     _commitment = new PredecessorObj<Commitment>(this, RoleCommitment, commitment);
 }
Exemple #48
0
 // Hydration constructor
 private Cloud(FactMemento memento)
 {
     InitializeResults();
     _creator = new PredecessorObj <Identity>(this, RoleCreator, memento);
 }
 // Business constructor
 public ContactInformation(
     Order order
     ,IEnumerable<ContactInformation> prior
     ,string name
     ,string phoneNumber
     )
 {
     InitializeResults();
     _order = new PredecessorObj<Order>(this, RoleOrder, order);
     _prior = new PredecessorList<ContactInformation>(this, RolePrior, prior);
     _name = name;
     _phoneNumber = phoneNumber;
 }
 // Hydration constructor
 private Like(FactMemento memento)
 {
     InitializeResults();
     _individual = new PredecessorObj <Individual>(this, GetRoleIndividual(), memento, Individual.GetUnloadedInstance, Individual.GetNullInstance);
     _tune       = new PredecessorObj <Tune>(this, GetRoleTune(), memento, Tune.GetUnloadedInstance, Tune.GetNullInstance);
 }
 // Fields
 // Results
 // Business constructor
 public Delivered(
     Completed completed
     ,DeliveryDetail deliveryDetail
     )
 {
     InitializeResults();
     _completed = new PredecessorObj<Completed>(this, RoleCompleted, completed);
     _deliveryDetail = new PredecessorObj<DeliveryDetail>(this, RoleDeliveryDetail, deliveryDetail);
 }
 // Hydration constructor
 private Share(FactMemento memento)
 {
     InitializeResults();
     _individual = new PredecessorObj<Individual>(this, RoleIndividual, memento);
     _messageBoard = new PredecessorObj<MessageBoard>(this, RoleMessageBoard, memento);
 }
 // Business constructor
 public CakeDetail(
     Order order
     ,CakeSize size
     ,CakeFlavor cakeFlavor
     ,FrostingFlavor frostingFlavor
     ,FrostingColor mainColor
     ,FrostingColor decorationColor
     ,IEnumerable<CakeDetail> prior
     ,string message
     ,string cakeInstructions
     )
 {
     InitializeResults();
     _order = new PredecessorObj<Order>(this, RoleOrder, order);
     _size = new PredecessorObj<CakeSize>(this, RoleSize, size);
     _cakeFlavor = new PredecessorObj<CakeFlavor>(this, RoleCakeFlavor, cakeFlavor);
     _frostingFlavor = new PredecessorObj<FrostingFlavor>(this, RoleFrostingFlavor, frostingFlavor);
     _mainColor = new PredecessorObj<FrostingColor>(this, RoleMainColor, mainColor);
     _decorationColor = new PredecessorObj<FrostingColor>(this, RoleDecorationColor, decorationColor);
     _prior = new PredecessorList<CakeDetail>(this, RolePrior, prior);
     _message = message;
     _cakeInstructions = cakeInstructions;
 }
 // Business constructor
 public DeliveryDetail(
     Order order
     ,City city
     ,IEnumerable<DeliveryDetail> prior
     ,string streetAddress
     ,DateTime expectedDeliveryDate
     ,string deliveryInstructions
     )
 {
     InitializeResults();
     _order = new PredecessorObj<Order>(this, RoleOrder, order);
     _city = new PredecessorObj<City>(this, RoleCity, city);
     _prior = new PredecessorList<DeliveryDetail>(this, RolePrior, prior);
     _streetAddress = streetAddress;
     _expectedDeliveryDate = expectedDeliveryDate;
     _deliveryInstructions = deliveryInstructions;
 }