18 lines
655 B
C#
18 lines
655 B
C#
namespace SessionCompanion.Services.Services
|
|
{
|
|
|
|
using AutoMapper;
|
|
using SessionCompanion.Database.Repositories.Base;
|
|
using SessionCompanion.Database.Tables;
|
|
using SessionCompanion.Services.Base;
|
|
using SessionCompanion.Services.Interfaces;
|
|
using SessionCompanion.ViewModels.CharacterOtherEquipmentViewModels;
|
|
|
|
public class CharacterOtherEquipmentService : ServiceBase<CharacterOtherEquipmentViewModel, CharacterOtherEquipment>, ICharacterOtherEquipmentService
|
|
{
|
|
public CharacterOtherEquipmentService(IMapper mapper, IRepository<CharacterOtherEquipment> repository) : base(mapper, repository)
|
|
{ }
|
|
|
|
}
|
|
}
|