mathieusteen 05a59220a1 blabla
2020-12-11 15:25:37 +01:00

15 lines
337 B
C#

using AlfaPrentice.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AlfaPrentice.Repositorys.Interfaces
{
public interface IBedrijfRepository
{
Task<IEnumerable<Bedrijf>> GetBedrijf(int Bedrijf_ID);
//drijf GetBedrijf(int Bedrijf_ID);
}
}