예제 #1
0
 public bool Edit(ContactEditM contact, bool withPhoto)
 {
     try
     {
         Person person = ConverterContactToPerson.ForSave(contact);
         return(personDao.Edit(person, withPhoto));
     }
     catch (Exception ex)
     {
         //TO DO logging
         return(false);
     }
 }