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(); }
public Communication[] GetCommunications(string apiKey) { return(Communication.ListByPerson(apiKey, this.Id)); }