using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Team.FFFeederService.Interfaces; using TeamAAS_VP.Models; namespace TeamAAS_VP.Interfaces { public interface IRobotService { Task CreateRobotAsync(Guid id, RobotInfo robotInfo); bool CreateRobot(Guid id, RobotInfo robotInfo); IRobot GetRobot(Guid id); Task GetRobotAsync(Guid id); Task UnRegisterRobotAsync(Guid id); void UnRegisterRobot(Guid id); } }