Beispiel #1
0
 /// <summary>
 /// to check client/s is/are available for a checklist with systemid
 /// </summary>
 /// <param name="systemId"></param>
 /// <param name="checkListId"></param>
 /// <returns></returns>
 public bool CheckClientDependencyOnDelteSystem(int systemId, int checkListId)
 {
     try
     {
         return(_checkListRepository.CheckClientDependencyOnDelteSystem(systemId, checkListId));
     }
     catch (Exception ex)
     {
         _logger.Log(ex, LogLevel.Error, ex.Message);
         return(false);
     }
 }