You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.0 KiB
C#
60 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web.Mvc;
|
|
using DSWeb.Areas.CommMng.DAL;
|
|
using DSWeb.TruckMng.Comm.Cookie;
|
|
using DSWeb.TruckMng.Helper;
|
|
using DSWeb.TruckMng.Helper.Repository;
|
|
using HcUtility.Comm;
|
|
using HcUtility.Core;
|
|
using DSWeb.SoftMng.Filter;
|
|
|
|
namespace DSWeb.Areas.TruckMng.Controllers
|
|
{
|
|
/// <summary>
|
|
|
|
/// </summary>
|
|
[JsonRequestBehavior]
|
|
public class GPSLocationController : Controller
|
|
{
|
|
//
|
|
// GET: /TruckMng/MsKfLy/
|
|
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
|
|
//
|
|
// GET: /TruckMng/MsKfLy/Edit
|
|
|
|
public ActionResult Edit()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
//
|
|
// GET: /TruckMng/MsKfLy/IndexTyre
|
|
|
|
public ActionResult IndexTyre()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
|
|
//
|
|
// GET: /TruckMng/MsKfLy/EditTyre
|
|
|
|
public ActionResult EditTyre()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|