2017-01-25 17:10:08 +01:00
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Ordering.API.Application.Queries
|
2016-12-19 10:20:02 +01:00
|
|
|
|
{
|
2017-04-27 17:45:34 -04:00
|
|
|
|
using System.Collections.Generic;
|
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-27 17:45:34 -04:00
|
|
|
|
Task<IEnumerable<dynamic>> GetOrdersAsync();
|
2016-12-19 10:20:02 +01:00
|
|
|
|
|
2017-04-27 17:45:34 -04:00
|
|
|
|
Task<IEnumerable<dynamic>> GetCardTypesAsync();
|
2016-12-19 10:20:02 +01:00
|
|
|
|
}
|
|
|
|
|
}
|