public async Task <bool> CheckIfChecklistExistByUnitId(int unitId)
        {
            try
            {
                var status = await _repository.CheckIfChecklistExistByUnitId(unitId);

                return(status);
            }
            catch (OzoneException ex)
            {
                throw new OzoneException(ex.Message, ex.InnerException);
            }
        }