Beispiel #1
0
        public bool DeleteStaffExpByExpId([FromBody] long staffExpId)
        {
            bool result = false;

            try
            {
                if (staffExpId > 0)
                {
                    result = _staffService.DeleteStaffExperienceById(staffExpId);
                }
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }

            return(result);
        }