using Core.Annotations; using Core.Models.Eft.Common.Tables; namespace Core.Helpers; [Injectable] public class QuestConditionHelper { public List GetQuestConditions( List questConditions, Func> furtherFilter = null) { throw new NotImplementedException(); } public List GetLevelConditions( List questConditions, Func> furtherFilter = null) { throw new NotImplementedException(); } public List GetLoyaltyConditions( List questConditions, Func> furtherFilter = null) { throw new NotImplementedException(); } public List GetStandingConditions( List questConditions, Func> furtherFilter = null) { throw new NotImplementedException(); } protected List FilterConditions( List questConditions, string questType, Func> furtherFilter = null) { throw new NotImplementedException(); } }