using DaSaSo.Domain.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DaSaSo.Domain.Services.ClientServices { public interface IClientService { Task ListAllClient(); Task GetClientById(int id); Task CreateNewClient(string firstname, string lastname, string street, string country, string postcode); } }