public CreateInternalAssociateDto(int dunsNumber, string longName, string shortName, InternalAssociateType internalAssociateType)
 {
     DUNSNumber            = dunsNumber;
     LongName              = longName;
     ShortName             = shortName;
     InternalAssociateType = internalAssociateType;
 }
Exemplo n.º 2
0
 public InternalAssociate(DUNSNumber dunsNumber, LongName longName, ShortName shortName, InternalAssociateType internalBusinessAssociateType)
 {
     InternalBusinessAssociateType = internalBusinessAssociateType;
     Status = Status.ACTIVE;
     AssetManagerRelationships = new List <AssetManagerRelationship>();
 }