Пример #1
0
 public Client CheckFamilleTier_ExistClient(int id)
 {
     try
     {
         return(_FamilleTierRepository.GetByClient(id));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Пример #2
0
        public bool CheckFAT_ExistClient(int id)
        {
            var fat = _FamilleTierRepository.GetByClient(id);

            return(fat != null);
        }