public void Update(int id, string name   = null,
                    string lastName       = null, DateTime?birthday = null,
                    string gender         = null, string phone      = null,
                    string patronymicName = null)
 {
     if (phone != null)
     {
         // Phone processing
     }
     _profileDao.Update(id, name, lastName, birthday, gender,
                        phone, patronymicName);
 }