implementing MVC architecture in C# windows application

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • RAJAN CRP

    implementing MVC architecture in C# windows application

    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

    *** Sent via Developersdex http://www.developersdex.com ***
  • Pavel Minaev

    #2
    Re: implementing MVC architecture in C# windows application

    On Oct 8, 2:59 pm, RAJAN CRP <mail2crpra...@ gmail.comwrote:
    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+mv c" 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?..

    Comment

    Working...