예제 #1
0
 public void UpdateInvoice(Invoice invo)
 {
     if (invo.Collected == true && invo.Act_CollectedDate == null)
     {
         invo.Act_CollectedDate = DateTime.Now;
     }
     repo.UpdateInvoice(invo);
 }
예제 #2
0
 public void UpdateInvoice(Invoice invoice)
 {
     repo.UpdateInvoice(invoice);
 }