using Core.Annotations; using Core.Models.Eft.Common.Tables; namespace Core.Services; [Injectable(InjectionType.Singleton)] public class TraderAssortService { public TraderAssort GetPristineTraderAssort(string traderId) { throw new NotImplementedException(); } /// /// Store trader assorts inside a class property /// /// Traderid to store assorts against /// Assorts to store public void SetPristineTraderAssort(string traderId, TraderAssort assort) { throw new NotImplementedException(); } }