public Client CheckDevise_ExistClient(int id) { try { return(_DeviseRepository.GetByClient(id)); } catch (Exception ex) { throw ex; } }
public bool CheckDev_ExistClient(int id) { var dvs = _DeviseRepository.GetByClient(id); return(dvs != null); }