public async Task <bool> DeleteServiceProgram(int servLocFacilityId)
        {
            var ent = await _programRepository.GetById(servLocFacilityId);

            return(await _programRepository.Delete(ent));
        }