TextRecognisingController.cs

29 lines | 597 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

using NeuralNetwork.Model.Services;

namespace NeuralNetwork.UI.Web.Controllers
{
    public class TextRecognisingController : Controller
    {
        ITextRecognisingService TextRecognisingService
            = new TextRecognisingTestService();


        [HttpGet]
        public ActionResult Recognising() 
        {
            return View();
        }

        [HttpPost]
        public ActionResult Recognising(string param) 
        {
            return View();
        }
    }
}