8 lines
222 B
C#
8 lines
222 B
C#
using SytelineSaAppEfDataModel.Dtos;
|
|
|
|
namespace SytelineSaAppEfDataModel.Services;
|
|
|
|
public interface IItemCustPriceAllService
|
|
{
|
|
Task<ItemCustPriceAllDto?> GetItemCustPriceAllAsync(string item, string customerNumber);
|
|
} |