예제 #1
0
        public async Task <ActionResult <JobApplicationMinWithJoRes> > Post([FromBody] JobApplicationWithJoReq request)
        {
            int userId = int.Parse(HttpContext.User.Identity.Name);

            var response = await _jobApplicationService.CreateAsync(request, userId);

            return(StatusCode(201, response));
        }