本文整理汇总了C#中PredecessorObj类的典型用法代码示例。如果您正苦于以下问题:C# PredecessorObj类的具体用法?C# PredecessorObj怎么用?C# PredecessorObj使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
PredecessorObj类属于命名空间,在下文中一共展示了PredecessorObj类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Acknowledge
// Fields
// Results
// Business constructor
public Acknowledge(
Message message
)
{
InitializeResults();
_message = new PredecessorObj<Message>(this, RoleMessage, message);
}
示例2: Account
// Business constructor
public Account(
Company company
,int type
)
{
_unique = Guid.NewGuid();
InitializeResults();
_company = new PredecessorObj<Company>(this, GetRoleCompany(), company);
_type = type;
}
示例3: Delivered
// Hydration constructor
private Delivered(FactMemento memento)
{
InitializeResults();
_completed = new PredecessorObj<Completed>(this, RoleCompleted, memento);
_deliveryDetail = new PredecessorObj<DeliveryDetail>(this, RoleDeliveryDetail, memento);
}
示例4: ContactInformation
// Hydration constructor
private ContactInformation(FactMemento memento)
{
InitializeResults();
_order = new PredecessorObj<Order>(this, RoleOrder, memento);
_prior = new PredecessorList<ContactInformation>(this, RolePrior, memento);
}
示例5: Completed
// Hydration constructor
private Completed(FactMemento memento)
{
InitializeResults();
_commitment = new PredecessorObj<Commitment>(this, RoleCommitment, memento);
}
示例6: Commitment
// 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);
}
示例7: Closed
// Hydration constructor
private Closed(FactMemento memento)
{
InitializeResults();
_delivered = new PredecessorObj<Delivered>(this, RoleDelivered, memento);
}
示例8: City
// Hydration constructor
private City(FactMemento memento)
{
InitializeResults();
_company = new PredecessorObj<Company>(this, RoleCompany, memento);
}
示例9: DeprovisionKitchen
// Hydration constructor
private DeprovisionKitchen(FactMemento memento)
{
InitializeResults();
_provision = new PredecessorObj<ProvisionKitchen>(this, RoleProvision, memento);
}
示例10: DeprovisionFrontOffice
// Hydration constructor
private DeprovisionFrontOffice(FactMemento memento)
{
InitializeResults();
_provision = new PredecessorObj<ProvisionFrontOffice>(this, RoleProvision, memento);
}
示例11: DeliveryDetail
// 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);
}
示例12: Share
// Hydration constructor
private Share(FactMemento memento)
{
InitializeResults();
_individual = new PredecessorObj<Individual>(this, RoleIndividual, memento);
_messageBoard = new PredecessorObj<MessageBoard>(this, RoleMessageBoard, memento);
}
示例13: Pull
// Hydration constructor
private Pull(FactMemento memento)
{
InitializeResults();
_order = new PredecessorObj<Order>(this, RoleOrder, memento);
_kitchen = new PredecessorObj<Kitchen>(this, RoleKitchen, memento);
}
示例14: CakeDetail
// 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);
}
示例15: Order
// Business constructor
public Order(
Company company
)
{
_unique = Guid.NewGuid();
InitializeResults();
_company = new PredecessorObj<Company>(this, RoleCompany, company);
}