Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/ISeasonService.cs
2018-10-12 20:52:59 +02:00

9 lines
136 B
C#

using LaDOSE.Entity;
namespace LaDOSE.Business.Interface
{
public interface ISeasonService : IBaseService<Season>
{
}
}