PublicAPI.CRM.Relationship.CreateCall ELMA API Documentation
Create Call. Creates an object without saving to the database
 
 
Syntax

public RelationshipCall CreateCall()

Return Value

Type: RelationshipCall
Call
Examples

//create a call 
var myCall = PublicAPI.CRM.Relationship.CreateCall();

//myCall - created call 

//WARNING!! A call is created without a name. For correct work with the call, you should 
//specify its name and sabe the object to the database
myCall.Theme = "Call Name";
myCall.Save();
See Also