session-companion/SessionCompanion/SessionCompanion.Services/Intefraces/ICharacterArmorService.cs

21 lines
726 B
C#
Raw Normal View History

2020-12-27 19:47:13 +01:00
using System;
using System.Collections.Generic;
using System.Text;
namespace SessionCompanion.Services.Interfaces
{
using System.Threading.Tasks;
using SessionCompanion.Database.Tables;
2021-01-13 17:10:41 +01:00
using SessionCompanion.Extensions.EitherType;
2020-12-27 19:47:13 +01:00
using SessionCompanion.Services.Base;
2021-01-13 17:10:41 +01:00
using SessionCompanion.ViewModels.ApiResponses;
2020-12-27 19:47:13 +01:00
using SessionCompanion.ViewModels.CharacterArmorViewModels;
public interface ICharacterArmorService : IServiceBase<CharacterArmorViewModel, CharacterArmor>
{
2021-01-13 17:10:41 +01:00
Task<Either<SuccessResponse, ErrorResponse>> ChangeCharacterArmor(int characterId, int newArmorId);
Task<List<CharacterArmorViewModelDetails>> GetCharacterArmorsTaskList(int characterId);
2020-12-27 19:47:13 +01:00
}
}