17 lines
377 B
C#
17 lines
377 B
C#
using MyCode.Project.Domain.Message.Response.Common;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MyCode.Project.Services
|
|
{
|
|
public interface IItemListService
|
|
{
|
|
List<ItemResult> GetMemberTypeList();
|
|
|
|
List<ItemResult> GetPurchasingBehaviorList();
|
|
|
|
List<ItemResult> GetSheetTypeList();
|
|
|
|
List<ItemResult> GetPlatformSourceList();
|
|
}
|
|
}
|