using WorkFlowCheck.Common.DTO; namespace WorkFlowCheck.Web.Services.Interfaces { public interface IBaseStockService { Task> GetAllCheckPoints(); Task GetCheckPoint(int id); Task> UpdateCheckPoint(CheckPointDTO checkPoint); } }