示例#1
0
        public EmailListDto ListEmaiForInvoice(string sessionKey, string invoiceId)
        {
            EmailListDto retVal = new EmailListDto();

            retVal.Add(new EmailDto {
                Id = 1, Text = "x@ycom"
            });
            return(retVal);
        }
示例#2
0
 public EmailListDto ListEmaiForInvoice(string sessionKey, string invoiceId)
 {
     EmailListDto retVal = new EmailListDto();
      retVal.Add(new EmailDto { Id = 1, Text = "x@ycom" });
      return retVal;
 }