roadie/Roadie.Api.Services/ILabelService.cs
Steven Hildreth c7e6e1392d Cleanup
2019-01-08 16:40:26 -06:00

17 lines
No EOL
504 B
C#

using Roadie.Library;
using Roadie.Library.Models;
using Roadie.Library.Models.Pagination;
using Roadie.Library.Models.Users;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Roadie.Api.Services
{
public interface ILabelService
{
Task<OperationResult<Label>> ById(User roadieUser, Guid id, IEnumerable<string> includes = null);
Task<PagedResult<LabelList>> List(User roadieUser, PagedRequest request, bool? doRandomize = false);
}
}