roadie/Roadie.Api.Library/Engines/ILabelLookupEngine.cs

12 lines
398 B
C#
Raw Normal View History

2018-12-15 22:35:20 +00:00
using System.Threading.Tasks;
using Roadie.Library.Data;
namespace Roadie.Library.Engines
{
public interface ILabelLookupEngine
{
Task<OperationResult<Label>> Add(Label label);
Task<OperationResult<Label>> GetByName(string LabelName, bool doFindIfNotInDatabase = false);
Task<OperationResult<Label>> PerformMetaDataProvidersLabelSearch(string LabelName);
}
}