// GET: UserStory
 public ActionResult Index()
 {
     return(View(service.GetAll()));
 }
예제 #2
0
 public IEnumerable <UserStory> Get()
 {
     return(service.GetAll());
 }