using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Team.FFFeederService.Interfaces { public interface IFeederService { Task CreateFeederAsync(Guid id, string ip, int port, FeederBrand feederBrand); bool CreateFeeder(Guid id, string ip, int port, FeederBrand feederBrand); IVoiceCoilMotorFeeder GetFeeder(Guid id); Task GetFeederAsync(Guid id); Task UnRegisterFeederAsync(Guid id); void UnRegisterFeeder(Guid id); } }