using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_Model; using WIDESEAWCS_Model.Models; using WIDESEAWCS_Model.Models.System; namespace WIDESEAWCS_ISystemServices { public interface IPlatformStationService : IService { public List GetPlatform(string deviceNo); public List GetPlatform2(string deviceNo); public List GetPlatform3(string deviceNo); public List GetPlatIn(string deviceNo); public List GetPlatformList(string deviceNo); public List GetPlatformOutList(string deviceNo); public string GetSCName(string deviceNo); public string GetOutSCName(string deviceNo, int Station_storey); } }