00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef Payment_Service_HPP
00012 #define Payment_Service_HPP
00013
00014 #include "read_write_base.hpp"
00015 class Payment_Service_Obj: public read_write_base
00016 {
00017 public:
00018 identifier Id;
00019 llong Type;
00020 string Name;
00021 string Label;
00022 string Instructions;
00023
00024 Payment_Service_Obj():read_write_base()
00025 ,Id(0LL)
00026 ,Type(0LL)
00027 ,Name("")
00028 ,Label("")
00029 ,Instructions("")
00030 {
00031
00032 data_name("Payment_Service");
00033
00034 addDXMap( new llongXfer("Id", &Id ));
00035 addDXMap( new llongXfer("Type", &Type ));
00036 addDXMap( new stringXfer("Name", &Name ));
00037 addDXMap( new stringXfer("Label", &Label ));
00038 addDXMap( new stringXfer("Instructions", &Instructions ));
00039 }
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055 };
00056 #endif
00057