IEC61970 16v29a - IEC61968 12v08
CustomerAccount.h
1 // CustomerAccount.h
3 // Implementation of the Class CustomerAccount
5 
6 #ifndef CUSTOMERACCOUNT_H
7 #define CUSTOMERACCOUNT_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/String.h"
12 #include "IEC61968/InfIEC61968/InfERPSupport/ErpInvoice.h"
13 #include "IEC61968/InfIEC61968/InfCustomers/WorkBillingInfo.h"
14 #include "IEC61968/Customers/CustomerAgreement.h"
15 #include "IEC61968/PaymentMetering/Transaction.h"
16 #include "IEC61968/Common/Document.h"
17 
18 namespace IEC61968
19 {
20  namespace Customers
21  {
29  {
30 
31  public:
33  virtual ~CustomerAccount();
38  IEC61970::Base::Domain::String billingCycle;
42  IEC61970::Base::Domain::String budgetBill;
43  std::list<IEC61968::InfIEC61968::InfERPSupport::ErpInvoice*> ErpInvoicees;
44  std::list<IEC61968::InfIEC61968::InfCustomers::WorkBillingInfo*> WorkBillingInfos;
48  std::list<IEC61968::Customers::CustomerAgreement*> CustomerAgreements;
52  std::list<IEC61968::PaymentMetering::Transaction*> PaymentTransactions;
53 
54  };
55 
56  }
57 
58 }
59 #endif // CUSTOMERACCOUNT_H
IEC61970::Base::Domain::String billingCycle
Definition: CustomerAccount.h:38
Definition: Document.h:27
std::list< IEC61968::Customers::CustomerAgreement * > CustomerAgreements
Definition: CustomerAccount.h:48
std::list< IEC61968::PaymentMetering::Transaction * > PaymentTransactions
Definition: CustomerAccount.h:52
IEC61970::Base::Domain::String budgetBill
Definition: CustomerAccount.h:42
Definition: CustomerAccount.h:28
Definition: BusbarSectionInfo.h:14