I am currently working on a project with which I need to program up a bit of a proof of concept app. I have written PoC apps before but they have only been really small and haven't really had lots of layers where as the app I'm writing now has a:
- Form layer - talks to data layer.
- Data layer - talks to Database and Interop layer.
- Interop Layer - talks to a COM object.
- The COM object
What would be the best way to write a program to show that I can get from A to B and the process that is needed, without needing to invest a lot of time in writing the PoC.
I already have the idea in my head on how it should all go together but I'm having a bit of trouble showing my team mates what I mean.
Can anyone recommend any tips/tricks when coding up PoCs? Or would there be a better way to explain what I mean rather then having to write code.