using WMS_GIRAF_Interface.Entities; namespace WMS_GIRAF_Interface.Repositories.Interface; public interface IIoControlRouteRepository { public IO_CONTROL_ROUTE? GetIoControlRoute(int? lineNumber); public List GetEnableControlRoutes(string startDeviceCode, string endDeviceCode); }