chore: initial commit

This commit is contained in:
Matthias Langhard
2021-04-12 13:54:09 +02:00
commit 2a2527f0da
64 changed files with 12106 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using Novaloop.BexioApi.Contacts.Models;
using Novaloop.BexioApi.Shared.Models;
namespace Novaloop.BexioApi.Contacts
{
public interface IBexioContactsApiService
{
Task<IEnumerable<BexioContact>> GetAll();
Task<IEnumerable<BexioContact>> Search(IEnumerable<BexioSearchParameter> searchParams);
}
}