using Connected.ServiceModel; using Connected.Services; namespace Contacts.Types; internal sealed class BusinessPartnerService : EntityService, IBusinessPartnerService { public BusinessPartnerService(IContext context) : base(context) { } public Task Select(PrimaryKeyArgs args) { throw new NotImplementedException(); } }