using System.Collections.Immutable; namespace Connected.Data.Sharding { internal class ShardingService : IShardingService { public Task> Query(Type entity) { throw new NotImplementedException(); } public Task Select(Type entity, ShardPrimaryKeyArgs args) { throw new NotImplementedException(); } } }