Bill Wagner e813332890 Fix API signatures for collections
The methods that return collections should return
Task<IEnumerable<dynamic>> not Task<dynamic>
2017-05-04 10:36:23 -04:00

15 lines
363 B
C#

namespace Microsoft.eShopOnContainers.Services.Ordering.API.Application.Queries
{
using System.Collections.Generic;
using System.Threading.Tasks;
public interface IOrderQueries
{
Task<dynamic> GetOrderAsync(int id);
Task<IEnumerable<dynamic>> GetOrdersAsync();
Task<IEnumerable<dynamic>> GetCardTypesAsync();
}
}