Пример #1
0
        public IActionResult Confirm(FormInformation fi)//the status change
        {
            InformationReader reader = new InformationReader();
            int result = reader.insertCompletedStatus(fi);

            return(RedirectToAction("Index", fi));
        }
Пример #2
0
        public IActionResult Index()
        {
            FormInformation fi = new FormInformation();//retrieve the information

            fi.OrdersList = InformationReader.GetInformation();

            return(View("Index", fi));
        }
Пример #3
0
    void Awake()
    {
        if (instance != null)
        {
            Debug.Log("UI update error! multiple UI");
        }
        instance = this;

        readJson();
    }