This repository has been archived by the owner on Jul 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetValidAccountCodes.cs
56 lines (47 loc) · 1.91 KB
/
GetValidAccountCodes.cs
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
namespace Jenzabar.CRM.Staff.Web.Portlets.GLAccountLookupPortlet {
/// <remarks/>
// XML from the CRMStaff.GLAccountLookup plug-in is used to populate this class.
[System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
public class ValidAccountCodes {
/// <remarks/>
private ValidAccountCodesGLAccountLookupLedgerAccounts[] _items;
/// This is the comment for _items
[System.Xml.Serialization.XmlArrayAttribute("GLAccountLookup", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
[System.Xml.Serialization.XmlArrayItemAttribute("LedgerAccounts", typeof(ValidAccountCodesGLAccountLookupLedgerAccounts), Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
public ValidAccountCodesGLAccountLookupLedgerAccounts[] Items {
get {
return this._items;
}
set {
this._items = value;
}
}
}
/// <remarks/>
public class ValidAccountCodesGLAccountLookupLedgerAccounts {
/// <remarks/>
private string _accountcode;
/// <remarks/>
private string _accountname;
/// This is the comment for _accountcode
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string AccountCode {
get {
return this._accountcode;
}
set {
this._accountcode = value;
}
}
/// This is the comment for _accountname
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string AccountName {
get {
return this._accountname;
}
set {
this._accountname = value;
}
}
}
}