15 lines
337 B
C#
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);
|
|
}
|
|
}
|