26 lines
813 B
C#
26 lines
813 B
C#
|
using AutoMapper;
|
|||
|
using SessionCompanion.Database.Repositories.Base;
|
|||
|
using SessionCompanion.Database.Tables;
|
|||
|
using SessionCompanion.Services.Base;
|
|||
|
using SessionCompanion.Services.Interfaces;
|
|||
|
using SessionCompanion.ViewModels.CharacterViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Linq;
|
|||
|
using Microsoft.EntityFrameworkCore.Internal;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using AutoMapper.QueryableExtensions;
|
|||
|
using System.IO;
|
|||
|
using Newtonsoft.Json.Linq;
|
|||
|
|
|||
|
namespace SessionCompanion.Services.Services
|
|||
|
{
|
|||
|
public class CharacterService : ServiceBase<CharacterViewModel, Character>, ICharacterService
|
|||
|
{
|
|||
|
public CharacterService(IMapper mapper, IRepository<Character> repository) : base(mapper, repository)
|
|||
|
{ }
|
|||
|
}
|
|||
|
}
|