public Client CheckCategorie_ExistClient(int id)
 {
     try
     {
         return(_CategorieTarifRepository.GetByClient(id));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
示例#2
0
        public bool CheckCategorie_ExistClient(int id)
        {
            var fat = _CategorieTarifRepository.GetByClient(id);

            return(fat != null);
        }