using System.Collections.Generic; using Knoks.Core.Entities; using System.Threading.Tasks; namespace Knoks.Core.Data.Interfaces { public interface IGeneralDao { Task> GetCountries(string countryCode2 = null); Task> GetLanguages(); Task> GetKnokStatuses(); Task GetKnokStartValues(long exchangeId, string currency1, string currency2); Task> GetUserRank(long? userId); Task> GetKnoksLossCount(long? userId); Task AddKnokFeedBack(Feedback feedback); } }