19 lines
619 B
C#
19 lines
619 B
C#
|
using AutoMapper;
|
|||
|
using SessionCompanion.Database.Repositories.Base;
|
|||
|
using SessionCompanion.Database.Tables;
|
|||
|
using SessionCompanion.Services.Base;
|
|||
|
using SessionCompanion.Services.Interfaces;
|
|||
|
using SessionCompanion.ViewModels.IntelligenceViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace SessionCompanion.Services.Services
|
|||
|
{
|
|||
|
public class IntelligenceService : ServiceBase<IntelligenceViewModel, Intelligence>, IIntelligenceService
|
|||
|
{
|
|||
|
public IntelligenceService(IMapper mapper, IRepository<Intelligence> repository) : base(mapper, repository)
|
|||
|
{ }
|
|||
|
}
|
|||
|
}
|