16 lines
368 B
C#
16 lines
368 B
C#
|
|
using InSituLaboratory.Entities;
|
|||
|
|
using InSituLaboratory.Entities.ExperimentalStationEntities;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace InSituLaboratory.IService
|
|||
|
|
{
|
|||
|
|
public interface ISysStatusService : IBaseService
|
|||
|
|
{
|
|||
|
|
IEnumerable<SysStatus> GetSysStauts();
|
|||
|
|
}
|
|||
|
|
}
|