1 2 3 4 5 6 7 8 9 10 11 12 13
namespace Cmpp298.Assignment3.Presentation { public interface IDeleteInvoiceView { string VendorName { set; } string InvoiceNumber { set; } string InvoiceDate { set; } string InvoiceTotal { set; } string PaymentTotal { set; } string CreditTotal { set; } string DueDate { set; } string PaymentDate { set; } string Terms { set; } } }