12 lines
333 B
C#
12 lines
333 B
C#
using WorkFlowCheck.Common.DTO;
|
|
|
|
namespace WorkFlowCheck.Web.Services.Interfaces
|
|
{
|
|
public interface IBaseStockService
|
|
{
|
|
Task<List<CheckPointDTO>> GetAllCheckPoints();
|
|
Task<CheckPointDTO> GetCheckPoint(int id);
|
|
Task<ApiResponseDTO<CheckPointDTO>> UpdateCheckPoint(CheckPointDTO checkPoint);
|
|
}
|
|
}
|