コード例 #1
0
ファイル: CallCenter.cs プロジェクト: mks786/CallCenter-1
        public NoteListDto ListNoteForInvoice(string sessionKey, string invoiceId)
        {
            NoteListDto retVal = new NoteListDto();

            retVal.Add(GetNote(sessionKey, "1"));
            retVal.Add(GetNote(sessionKey, "2"));
            return(retVal);
        }
コード例 #2
0
ファイル: CallCenter.cs プロジェクト: bhood/CallCenter
 public NoteListDto ListNoteForInvoice(string sessionKey, string invoiceId)
 {
     NoteListDto retVal = new NoteListDto();
      retVal.Add(GetNote(sessionKey, "1"));
      retVal.Add(GetNote(sessionKey, "2"));
      return retVal;
 }