implementing MVC architecture in C# windows application

R

RAJAN CRP

I need to implement MVC Design pattern/layered design in my C# windows
application which is as follows:

The application has a single winform having buttons for inserting a
record, deleting a record, editing a record, movefirst, movenext,
moveprevious, and movelast. The records should be navigated through
textboxes. It should contain a table in sql server with just two fields.
E.g Name-Varchar(20) and EmpAge Int.

Pls provide me with full code

Thanx in advance
 
P

Pavel Minaev

I need to implement MVC Design pattern/layered design in my C# windows
application which is as follows:

I seriously doubt you actually want MVC for your WinForms application
- you probably mean MVP (Model-View-Presenter) here.

Anyway, a quick Google search for "windows+mvc" will give plenty of
relevant links on howto's (and the discussion on the benefits and
problems).
The application has a single winform having buttons for inserting a
record, deleting a record, editing a record, movefirst, movenext,
moveprevious, and movelast. The records should be navigated through
textboxes. It should contain a table in sql server with just two fields.
E.g Name-Varchar(20) and EmpAge Int.

Okay, but...
Pls provide me with full code

.... your hourly rate for the work is?..
 

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

Top