public List <CategorieTarif> GetAll() { List <CategorieTarif> result = new List <CategorieTarif>(); result = _CategorieTarifRepository.GetAll(); return(result); }
public List <CategorieTarif> GetAll() { List <CategorieTarif> result = new List <CategorieTarif>(); try { result = _CategorieTarifRepository.GetAll(); return(result); } catch (Exception ex) { throw ex; } }