Пример #1
0
 public Communication GetCommunication(string apiKey)
 {
     return(Communication.Get(apiKey, this.CommunicationId));
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     this.Communication = BatchBook.Communication.Get(int.Parse(Request["communicationId"]));
     this.DataBind();
 }
Пример #3
0
 public Communication[] GetCommunications(string apiKey)
 {
     return(Communication.ListByPerson(apiKey, this.Id));
 }