예제 #1
0
 public bool update(Data data)
 {
     Profile_db profile = new Profile_db();
     GoogleMap_gl google = new GoogleMap_gl();
     data.add("latitude", google.GetLatitudeLongitude(data).Item1.ToString());
     data.add("longitude", google.GetLatitudeLongitude(data).Item2.ToString());
     return profile.update(data);
 }
예제 #2
0
 public Data selectInserted(Data data)
 {
     Profile_db profile = new Profile_db();
     return profile.selectInserted(data);
 }
예제 #3
0
 public Data selectAll(Data data)
 {
     Profile_db profile = new Profile_db();
     return profile.selectAll(data);
 }