Example #1
0
 public IActionResult RejectInterview(RespondInterviewServiceRequest data)
 {
     _sp.GetService <IApplicationsBL>().RejectInterview(data.InterviewId, data.RejectReason);
     return(Ok());
 }
Example #2
0
 public IActionResult ApproveInterview(RespondInterviewServiceRequest data)
 {
     _sp.GetService <IApplicationsBL>().ApproveInterview(data.InterviewId);
     return(Ok());
 }