Re: cfcs good practise

2008-05-27 Thread Richard White
Excellent thanks Jaime, you have given me a lot to think about. i think its best for me to start looking into these DAO's and refer back to what you have said, and get back to you again with more questions if you don't mind :) thanks again for your help, really appreciate it Richard

RE: cfcs good practise

2008-05-26 Thread Jaime Metcher
= description_param, dao = createTestDAO() ) Hope this helps Jaime Metcher -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Monday, 26 May 2008 8:58 PM To: CF-Talk Subject: Re: cfcs good practise Thanks for your reply Jaime so

Re: cfcs good practise

2008-05-26 Thread Richard White
Thanks for your reply Jaime so am i correct in understanding that i should have a project class with methods such as add, remove, find etc... and properties such as name etc... and a test class with much the same methods and attributes, and a materials class, again with much the same

RE: cfcs good practise

2008-05-25 Thread Jaime Metcher
Start with just a pure object model. Later you can pick it apart and patch up the bits that don't map real well to CF. So, Projects have Tests. To me, that says that you have a Project class with an instance variable Tests. Tests is a collection that has methods like add, remove, find etc.