Exemplo n.º 1
0
 public void DeleteNew(string parameters)
 {
     String[] words = parameters.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
     //words[0] newsId
     NewService.DeleteNew(Convert.ToInt32(words[0]));
 }