Click here to Skip to main content
15,896,342 members
Articles / Web Development / ASP.NET

Entity Framework Implementation Using ASP.NET MVP

Rate me:
Please Sign up or sign in to vote.
4.07/5 (10 votes)
13 May 2011GPL33 min read 57.1K   389   17  
Entity Framework Implementation using ASP.NET MVP
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using TestMVPApp.Model;

namespace TestMVPApp.View
{
    public interface IView
    {
        string FirstName { get; set; }
        string MiddleName { get; set; }
        string LastName { get; set; }
        string Address { get; set; }
        string ContactNo { get; set; }
        string Message { get; set; }
     }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer
Nepal Nepal
I am a software developer with knowledge of C, C++, PHP, MySQL, C#.Net, ADO.Net, MSSQL Server, Crystal Reports, Asp.Net, Oracle, Asp.Net MVP, MVC, jQuery, javascript, WebService, WCF, Entity Framework and so on. I love to play on New Technologies.

Comments and Discussions