21 lines
728 B
C#
21 lines
728 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using AutoMapper;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using SessionCompanion.Database.Repositories.Base;
|
|||
|
using SessionCompanion.Database.Tables;
|
|||
|
using SessionCompanion.Services.Base;
|
|||
|
using SessionCompanion.Services.Interfaces;
|
|||
|
using SessionCompanion.ViewModels.CharacterSpellSlotsViewModels;
|
|||
|
|
|||
|
namespace SessionCompanion.Services.Services
|
|||
|
{
|
|||
|
public class CharacterSpellSlotsService : ServiceBase<CharacterSpellSlotsViewModel, CharacterSpellSlots>, ICharacterSpellSlotsService
|
|||
|
{
|
|||
|
public CharacterSpellSlotsService(IMapper mapper, IRepository<CharacterSpellSlots> repository) : base(mapper, repository) { }
|
|||
|
|
|||
|
}
|
|||
|
}
|