Click here to Skip to main content
15,886,075 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
C#
interface IWard
    {
        void Add(Ward w);
        void Update(Ward w);
        void Delete(Ward w);
        List<Ward> GetAll();
        Ward GetById(int id);
        void Save();
       //List<Ward> SelectListItem();
      // public IEnumerable<SelectListItem> Albums { get; set; }
    }
public class WardRepository:IWard
{
}
public class WardController : Controller
{
}

and file cshtml
Posted
Updated 20-May-14 0:40am
v2
Comments
Sunasara Imdadhusen 20-May-14 6:40am    
What is your problem? and where is .cshtml code?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900