diff --git a/ServiceHost/Areas/Admin/Controllers/RegistrationWorkflowController.cs b/ServiceHost/Areas/Admin/Controllers/RegistrationWorkflowController.cs index db21069a..3f3d36a4 100644 --- a/ServiceHost/Areas/Admin/Controllers/RegistrationWorkflowController.cs +++ b/ServiceHost/Areas/Admin/Controllers/RegistrationWorkflowController.cs @@ -59,7 +59,7 @@ namespace ServiceHost.Areas.Admin.Controllers return result; } [HttpPost("auth-employer")] - public async Task>> AuthenticateEmployer(AuthenticateEmployerWorkflowRequest command) + public async Task>> AuthenticateEmployer( [FromBody]AuthenticateEmployerWorkflowRequest command) { var result = await _employerApplication.AuthenticateEmployer(command.NationalCode, command.DateOfBirth, command.Mobile); return result;