blob: 9b74a93032de65cda2768f6117ff86b188ca89bb (
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 INewInvoiceView {
void BindTo( DisplayVendorNameDto displayVendorNameDto );
IDropDownListAdapter Terms { get; }
string InvoiceNumber { get; set; }
string InvoiceDate { get; }
string InvoiceTotal { get; }
string PaymentTotal { get; }
string CreditTotal { get; }
string DueDate { get; }
string PaymentDate { get; }
void ShowError( string message );
}
}
|