Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. public static int Delete(ConnectionManager pConnectionManager, int pUserId)
  3. {
  4. Command command = new Command("Users_Delete", CommandType.StoredProcedure, pConnectionManager);
  5. command.AddInputParameter("UserId", DbType.Int32, pUserId);
  6. return command.ExecuteNonQuery();
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement