38 lines
833 B
C#
38 lines
833 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using static Org.BouncyCastle.Math.EC.ECCurve;
|
|
|
|
namespace MQTTServerSideAPI.Controllers
|
|
{
|
|
public class HomeController : BaseController
|
|
{
|
|
public ActionResult Index()
|
|
{
|
|
ViewBag.Title = "Home Page";
|
|
|
|
return View();
|
|
}
|
|
public ActionResult RefreshDevice()
|
|
{
|
|
ViewBag.Title = "RefreshDevice";
|
|
|
|
return View();
|
|
}
|
|
public ActionResult Offlinerecord()
|
|
{
|
|
ViewBag.Title = "Offlinerecord";
|
|
|
|
return View();
|
|
}
|
|
public ActionResult Viewofflinerecordsofalldevices()
|
|
{
|
|
ViewBag.Title = "Viewofflinerecordsofalldevices";
|
|
|
|
return View();
|
|
}
|
|
}
|
|
}
|