Esempio n. 1
0
        public GetStudentById_Result GetStudentById(int id)
        {
            using (var context = new MVC_IF4101MVCLPACEntities())
            {
                var student = context.GetStudentById(id).Single();

                return(student);
            }
        }