roadie/Roadie.Api.Services/ILabelService.cs

17 lines
504 B
C#
Raw Normal View History

2018-12-09 20:31:02 +00:00
using Roadie.Library;
using Roadie.Library.Models;
using Roadie.Library.Models.Pagination;
using Roadie.Library.Models.Users;
2018-12-09 20:31:02 +00:00
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Roadie.Api.Services
{
public interface ILabelService
{
2018-12-09 20:31:02 +00:00
Task<OperationResult<Label>> ById(User roadieUser, Guid id, IEnumerable<string> includes = null);
2019-01-08 22:40:26 +00:00
Task<PagedResult<LabelList>> List(User roadieUser, PagedRequest request, bool? doRandomize = false);
}
2018-11-16 03:37:00 +00:00
}