コード例 #1
0
        public IHttpActionResult Post(StudentCreate course)
        {
            var service = new StudentServicecs();

            service.CreateStudent(course);
            return(Ok());
        }
コード例 #2
0
        public IHttpActionResult GetAll()
        {
            StudentServicecs repo = new StudentServicecs();
            var list = repo.GetStudent();

            return(Ok(list));
        }