using System.Collections.Generic; using Knoks.Core.Entities; using System.Threading.Tasks; using Knoks.Core.Entities.Args; namespace Knoks.Core.Data.Interfaces { public interface IOperatorDao { Task CreateOperator(CreateOperatorArgs args); Task> GetOperators(int? operatorId = null); Task GetOperatorCredential(int apiConsumerId, string operatorName); } }