18 lines
569 B
C#
18 lines
569 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SessionCompanion.Services.Interfaces
|
|
{
|
|
using System.Threading.Tasks;
|
|
|
|
using SessionCompanion.Database.Tables;
|
|
using SessionCompanion.Services.Base;
|
|
using SessionCompanion.ViewModels.CharacterOtherEquipmentViewModels;
|
|
|
|
public interface ICharacterOtherEquipmentService : IServiceBase<CharacterOtherEquipmentViewModel, CharacterOtherEquipment>
|
|
{
|
|
Task<List<CharacterOtherEquipmentWithDetailsViewModel>> GetCharacterOtherEquipmentList(int characterId);
|
|
}
|
|
}
|