2017-01-25 17:10:08 +01:00
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Ordering.API.Application.Queries
|
2016-12-19 10:20:02 +01:00
|
|
|
|
{
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
public interface IOrderQueries
|
|
|
|
|
{
|
2017-04-17 12:28:12 +02:00
|
|
|
|
Task<dynamic> GetOrderAsync(int id);
|
2016-12-19 10:20:02 +01:00
|
|
|
|
|
2017-04-17 12:28:12 +02:00
|
|
|
|
Task<dynamic> GetOrdersAsync();
|
2016-12-19 10:20:02 +01:00
|
|
|
|
|
2017-04-17 12:28:12 +02:00
|
|
|
|
Task<dynamic> GetCardTypesAsync();
|
2016-12-19 10:20:02 +01:00
|
|
|
|
}
|
|
|
|
|
}
|