예제 #1
0
 public void delete(int id)
 {
     try
     {
         personaData.Delete(id);
     }
     catch (Exception exc)
     {
         throw;
     }
 }
예제 #2
0
 public void Delete(int id)
 {
     try
     {
         data.Delete(id);
     }
     catch (Exception Ex)
     {
         throw Ex;
     }
 }
예제 #3
0
 public void Delete(int id)
 {
     PersonaData.Delete(id);
 }
예제 #4
0
 public void Delete(int ID)
 {
     personaData.Delete(ID);
 }
예제 #5
0
 public void Delete(int ID)
 {
     personaAdapter.Delete(ID);
 }
예제 #6
0
        public void Delete(int Id)
        {
            PersonaAdapter persona = new PersonaAdapter();

            persona.Delete(Id);
        }