using WIDESEA_Core;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_ITaskInfoRepository;
using WIDESEAWCS_ITaskInfoService;
using WIDESEAWCS_Model.Models;
namespace WIDESEAWCS_TaskInfoService
{
///
/// 机械手状态服务实现
///
public class RobotStateService : ServiceBase, IRobotStateService
{
public RobotStateService(IRobotStateRepository repository) : base(repository)
{
}
}
}