예제 #1
0
 public void DeleteRole(long rolepostid)
 {
     try
     {
         _rolepost.DeleteEntity(rolepostid);
     }
     catch (Exception ce)
     {
         throw new Exception(ce.Message);
     }
 }
예제 #2
0
 public void DeleteUser(long userpostid)
 {
     try
     {
         _userpost.DeleteEntity(userpostid);
     }
     catch (Exception ce)
     {
         throw new Exception(ce.Message);
     }
 }