blob: d9c195ef0106d3e8d7fa995b16d534b6106baf77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using Cmpp298.Assignment3.Dto;
namespace Cmpp298.Assignment3.Presentation {
public interface IEditInvoiceView {
IDropDownListAdapter TermsDropDown { get; }
string VendorName { get; set; }
string InvoiceNumber { get; set; }
string InvoiceDate { get; set; }
string InvoiceTotal { get; set; }
string PaymentTotal { get; set; }
string CreditTotal { get; set; }
string DueDate { get; set; }
string PaymentDate { get; set; }
void ShowError( string message );
}
}
|