public bool Delete(int id) { try { return(_DeviseRepository.Delete(id)); } catch (Exception ex) { throw ex; } }
public bool Delete(int id) { return(_DeviseRepository.Delete(id)); }