예제 #1
0
 public Client CheckDevise_ExistClient(int id)
 {
     try
     {
         return(_DeviseRepository.GetByClient(id));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
예제 #2
0
        public bool CheckDev_ExistClient(int id)
        {
            var dvs = _DeviseRepository.GetByClient(id);

            return(dvs != null);
        }