/// <summary> /// Update a InvoiceLHDetail. /// </summary> public void Update(Model.InvoiceLHDetail invoiceLHDetail) { // // todo: add other logic here. // accessor.Update(invoiceLHDetail); }
/// <summary> /// Insert a InvoiceLHDetail. /// </summary> public void Insert(Model.InvoiceLHDetail invoiceLHDetail) { // // todo:add other logic here // accessor.Insert(invoiceLHDetail); }
protected override Form GetViewForm() { Model.InvoiceLHDetail detail = this.bindingSource1.Current as Model.InvoiceLHDetail; if (detail != null) { return(new EditForm(detail.InvoiceLHId)); } // return new ViewForm(invoice.InvoiceId); return(null); }
public void Update(Model.InvoiceLHDetail e) { this.Update <Model.InvoiceLHDetail>(e); }
public void Insert(Model.InvoiceLHDetail e) { this.Insert <Model.InvoiceLHDetail>(e); }