8 lines
194 B
C#
8 lines
194 B
C#
using SytelineSaAppEfDataModel.Dtos;
|
|
|
|
namespace SytelineSaAppEfDataModel.Services;
|
|
|
|
public interface IItemCustService
|
|
{
|
|
Task<ItemCustDto> GetItem(string itemNumber, string customerNumber);
|
|
} |