Exemplo n.º 1
0
 private bool removeTestPartyTypePair(List<PartyTypePair> partyTypePairs)
 {
     Dlm.Services.Party.PartyRelationshipTypeManager pmr = new Dlm.Services.Party.PartyRelationshipTypeManager();
     return pmr.RemovePartyTypePair(partyTypePairs);
 }
Exemplo n.º 2
0
 private Dlm.Entities.Party.PartyTypePair addTestPartyTypePair(PartyType alowedSource, PartyType alowedTarget)
 {
     Dlm.Services.Party.PartyRelationshipTypeManager pmr = new Dlm.Services.Party.PartyRelationshipTypeManager();
     return pmr.AddPartyTypePair("TitleTest", alowedSource, alowedTarget, "rel Type test", null);
 }
Exemplo n.º 3
0
 private bool removeTestPartyRelationshipType(List<PartyRelationshipType> partyRelationshipType)
 {
     Dlm.Services.Party.PartyRelationshipTypeManager pmr = new Dlm.Services.Party.PartyRelationshipTypeManager();
     return pmr.Delete(partyRelationshipType);
 }
Exemplo n.º 4
0
 private Dlm.Entities.Party.PartyRelationshipType addTestPartyRelationshipType(PartyType alowedSource, PartyType alowedTarget)
 {
     Dlm.Services.Party.PartyRelationshipTypeManager pmr = new Dlm.Services.Party.PartyRelationshipTypeManager();
     return pmr.Create("test", " ", false, 3, 2, alowedSource, alowedTarget, "", "");
 }