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.

29 lines
692 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Txgy.EWS.Client.IDAL
{
public interface ILocalDataAccess
{
List<string[]> GetLocalFileInfo();
List<string> GetIcons();
/// <summary>
/// 获取客户端类型
/// </summary>
/// <returns></returns>
int GetClientType();
/// 获取车道信息
string GetRoads();
/// <summary>
/// 根据车道ID获取对应的设备信息
/// </summary>
/// <param name="roadId"></param>
/// <returns></returns>
string GetDevices(int roadId);
}
}