Example #1
0
 public string BorrarLibro(long?id)
 {
     try
     {
         ILibroRepository Del     = new ILibroRepository();
         Int32            message = 0;
         message = Del.DeleteLibros(id);
         return(message.ToString());
     }
     catch
     {
         throw;
     }
 }