Hello,
I would like to add my own table to the RIS database, to store and retrieve some custom data.
To do this, I have created a Foo class and a Foo.hbm.xml file, mapping the Foo class to my Foo table.
I have also created:
a) GetFooRequest and GetFooResult classes
b) IFooBroker and FooBroker classes
c) GetFooSearchCriteria class
d) new GetFoo and SetFoo methods in one of the existing service classes
My GetFoo method uses the Find method of the IFooBroker class to read from the Foo table. This seems to be working; I can get the client to query Foo rows.
My question is: how do I store a new Foo object to the DB?
Any help or direction would be greatly appreciated.
Thanks,
Igor Kozyol