Generic Controller Test
This commit is contained in:
9
LaDOSE.Src/LaDOSE.Service/Interface/ISeasonService.cs
Normal file
9
LaDOSE.Src/LaDOSE.Service/Interface/ISeasonService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using LaDOSE.Entity;
|
||||
|
||||
namespace LaDOSE.Business.Interface
|
||||
{
|
||||
public interface ISeasonService : IBaseService<Season>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
13
LaDOSE.Src/LaDOSE.Service/Service/SeasonService.cs
Normal file
13
LaDOSE.Src/LaDOSE.Service/Service/SeasonService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user