using SptCommon.Annotations;
using Core.Models.Eft.Common.Tables;
using Core.Models.Eft.Ragfair;
namespace Core.Helpers;
[Injectable]
public class RagfairHelper
{
///
/// Gets currency TAG from TPL
///
/// currency
/// string
public string GetCurrencyTag(string currency)
{
throw new NotImplementedException();
}
public List FilterCategories(string sessionID, SearchRequestData request)
{
throw new NotImplementedException();
}
public Dictionary GetDisplayableAssorts(string sessionID)
{
throw new NotImplementedException();
}
protected List GetCategoryList(string handbookId)
{
throw new NotImplementedException();
}
///
/// Iterate over array of identical items and merge stack count
/// Ragfair allows abnormally large stacks.
///
public List- MergeStackable(List
- items)
{
throw new NotImplementedException();
}
///
/// Return the symbol for a currency
/// e.g. 5449016a4bdc2d6f028b456f return ₽
///
/// currency to get symbol for
/// symbol of currency
public string GetCurrencySymbol(string currencyTpl)
{
throw new NotImplementedException();
}
}