Example #1
0
        private int ServeRedirectionToActionManager(IActionManager manager)
        {
            var result = manager.Run();

            if (result == 0 || result == 9)
            {
                return(result);
            }
            return(100);
        }
Example #2
0
 private int ServeRedirectionToActionManager(IActionManager manager)
 {
     return(manager.Run());
 }