using Core.Annotations; using Core.Models.Eft.Ragfair; namespace Core.Services; [Injectable(InjectionType.Singleton)] public class RagfairRequiredItemsService { public List GetRequiredItemsById(string searchId) { throw new NotImplementedException(); } public void BuildRequiredItemTable() { throw new NotImplementedException(); } }