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

13 lines
295 B
C#

using LaDOSE.Business.Interface;
using LaDOSE.Entity;
using LaDOSE.Entity.Context;
namespace LaDOSE.Business.Service
{
public class SeasonService : BaseService<Season>, ISeasonService
{
public SeasonService(LaDOSEDbContext context) : base(context)
{
}
}
}