Exemplo n.º 1
0
        public ActionResult RemoveRecruitmentClient(int clientId)
        {
            string             result             = string.Empty;
            RecruitmentService recruitmentService = new RecruitmentService();

            recruitmentService.DeleteClients(clientId);
            result = "Row Deleted Successfully!";
            return(Json(result, JsonRequestBehavior.AllowGet));
        }