using System.Threading.Tasks; using Knoks.Core.Entities; using System.Collections.Generic; using Knoks.Core.Entities.Args; namespace Knoks.Core.Logic.Interfaces { public interface IOperatorManager { Task CreateOperator(CreateOperatorArgs args); Task> GetOperators(int? operatorId); Task AuthenticateOperator(int apiConsumerId, string operatorUsername, string operatorPassword); } }