本文整理汇总了C#中Invoice.CopyPropertiesFrom方法的典型用法代码示例。如果您正苦于以下问题:C# Invoice.CopyPropertiesFrom方法的具体用法?C# Invoice.CopyPropertiesFrom怎么用?C# Invoice.CopyPropertiesFrom使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Invoice
的用法示例。
在下文中一共展示了Invoice.CopyPropertiesFrom方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Update
public void Update(Invoice original_entity, Invoice entity)
{
var parcelsManager = new ParcelsManager(this);
parcelsManager.UpdateParcels(
parcelsManager.GetInvoiceParcels(original_entity.CompanyId, original_entity.InvoiceId),
entity.Parcels.AsQueryable());
original_entity.CopyPropertiesFrom(entity);
DbContext.SubmitChanges();
}
示例2: SaveInvoice
private Invoice SaveInvoice()
{
financialManager = new FinancialManager(this);
Invoice original_invoice = new Invoice();
Invoice invoice = new Invoice();
if (Page.ViewState["InvoiceId"] != null)
{
original_invoice = financialManager.GetInvoice(Company.CompanyId, Convert.ToInt32(Page.ViewState["InvoiceId"]));
invoice.CopyPropertiesFrom(original_invoice);
}
invoice.Description = txtSource.Text;
invoice.CompanyId = Company.CompanyId;
invoice.CostCenterId = Convert.ToInt32(cboCostCenter.SelectedValue);
if (Page.ViewState["CustomerId"] != null)
invoice.CustomerId = Convert.ToInt32(Page.ViewState["CustomerId"]);
//accountPlan
if (!String.IsNullOrEmpty(cboAccountPlan.SelectedValue))
invoice.AccountingPlanId = Convert.ToInt32(cboAccountPlan.SelectedValue);
if (Page.ViewState["InvoiceId"] != null)
{
invoice.ModifiedByUser = User.Identity.UserName;
financialManager.Update(original_invoice, invoice, ucParcels.DataSource);
}
else
{
invoice.CreatedByUser = User.Identity.UserName;
financialManager.Insert(invoice, ucParcels.DataSource);
}
if (Page.ViewState["InvoiceId"] != null)
return original_invoice;
else
return invoice;
}