def lookup(self,name):
     """
         Look up for a contact by name
         return the contact if found
     """
     cr=ContactRepository()
     return cr.find(name)