praktikum4/Interfaces/IPersonRepository.cs

14 lines
233 B
C#
Raw Permalink Normal View History

2017-03-08 15:47:46 +02:00
using Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Interfaces
{
public interface IPersonRepository : IRespository<Person>
{
}
}