예제 #1
0
        // GET: Artist
        public ActionResult Index()
        {
            var ap   = new ArtistProcess();
            var list = ap.GetAll();

            return(View(list));
        }
예제 #2
0
 public ArtistController()
 {
     process = new ArtistProcess();
 }
 public ProductController()
 {
     _pp = new ProductProcess();
     _ap = new ArtistProcess();
 }