Guest User

Untitled

a guest
May 20th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Microsoft.AspNetCore.Mvc;
  6. namespace StudentRecord.Controllers
  7. {
  8. [Route("mystudent")]
  9. public class studentController : Controller
  10. {
  11. [Route("studentName")]
  12. public string Name()
  13. {
  14. return "M Ali";
  15. }
  16. public IActionResult Index()
  17. {
  18. return View();
  19. }
  20. }
  21. }
Add Comment
Please, Sign In to add comment