public void CopyFrom(ExpenseReportDetail detail)
 {
     this.Date = detail.Date;
     this.Category = detail.Category;
     this.Description = detail.Description;
     this.Merchant = detail.Merchant;
     this.TransactionAmount = detail.TransactionAmount;
     this.BilledAmount = detail.BilledAmount;
     this.AccountNumber = detail.AccountNumber;
     this.CostCenter = detail.CostCenter;
     this.ReceiptUrl = detail.ReceiptUrl;
     this.ReportId = detail.ReportId;
 }
Ejemplo n.º 2
0
 public void CopyFrom(ExpenseReportDetail detail)
 {
     this.Date              = detail.Date;
     this.Category          = detail.Category;
     this.Description       = detail.Description;
     this.Merchant          = detail.Merchant;
     this.TransactionAmount = detail.TransactionAmount;
     this.BilledAmount      = detail.BilledAmount;
     this.AccountNumber     = detail.AccountNumber;
     this.CostCenter        = detail.CostCenter;
     this.ReceiptUrl        = detail.ReceiptUrl;
     this.ReportId          = detail.ReportId;
 }