Ejemplo n.º 1
0
        public ActionResult <int> RollDice()
        {
            Diece dice  = new Diece();
            int   value = dice.RollDiece();



            return(Ok(value));
        }
Ejemplo n.º 2
0
        public int RollDiece()
        {
            Diece diece = new Diece();

            return(diece.RollDiece());
        }