Ejemplo n.º 1
0
 private int savePhotographerInfo(string ptgphrName, string ptgphrId, string gender)
 {
     PhotographerAdapter adapter = new PhotographerAdapter();
     int count = adapter.insert(ptgphrName, ptgphrId, gender);
     if (count==1)
     {
         Debug.WriteLine(string.Format("[{0}, {1}, {2}]", ptgphrName, ptgphrId, gender));
     }
     return count;
 }