public async Task <IActionResult> GetMajorById(Guid id) { var major = await _majorService.GetMajorByIdAsync(id); return(Ok(major)); }