mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 04:33:16 +00:00
12 lines
No EOL
398 B
C#
12 lines
No EOL
398 B
C#
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);
|
|
}
|
|
} |