using System;
using System.Collections.Generic;
using System.Text;

namespace SessionCompanion.Services.Services
{
    using System.Linq;
    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.CharacterArmorViewModels;

    public class CharacterArmorService : ServiceBase<CharacterArmorViewModel, CharacterArmor>, ICharacterArmorService
    {
        public CharacterArmorService(IMapper mapper, IRepository<CharacterArmor> repository) : base(mapper, repository)
        { }
    }
}