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

            retVal.Add(new EmailDto {
                Id = 1, Text = "x@ycom"
            });
            return(retVal);
        }
コード例 #2
0
ファイル: CallCenter.cs プロジェクト: bhood/CallCenter
 public EmailListDto ListEmaiForInvoice(string sessionKey, string invoiceId)
 {
     EmailListDto retVal = new EmailListDto();
      retVal.Add(new EmailDto { Id = 1, Text = "x@ycom" });
      return retVal;
 }