is this possible

  • Thread starter Thread starter JustCoding
  • Start date Start date
J

JustCoding

here is what i would like to do if possible, we have about 10 or so batch
programs (console apps) that load data from text files into a sql server
database then writes log files, The only difference in these apps is the
business logic (data validation) is there a way to create a GUI interface
for the developer and just have them enter in the business logic click on
create and have the console app be created? Every batch program has the same
code and structure in them it even has the same function names, just the
actual business logic is different.
 
Yes. This post will point you in the right direction.

http://www.dotnet247.com/247reference/msgs/41/207717.aspx

You could also use the factory pattern to dynamically pass
back the desired class to the UI. This requires that all classes
in the factory expose the same public interface. But, the
private methods can be anything you want and as many as
you want per class.

http://www.eggheadcafe.com/articles/20031103.asp

--
2004 and 2005 Microsoft MVP C#
Robbe Morris
http://www.masterado.net

Earn $$$ money answering .NET Framework
messageboard posts at EggHeadCafe.com.
http://www.eggheadcafe.com/forums/merit.asp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top