2024-08-11 23:23:38 +08:00
|
|
|
|
using Yi.Framework.Bbs.Domain.Entities.Assignment;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Bbs.Domain.Managers.AssignmentProviders;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 新手任务提供者
|
|
|
|
|
|
/// </summary>
|
2024-08-12 23:23:29 +08:00
|
|
|
|
public class NoviceProvider : IAssignmentProvider
|
2024-08-11 23:23:38 +08:00
|
|
|
|
{
|
2024-08-12 23:23:29 +08:00
|
|
|
|
public async Task<List<AssignmentDefineAggregateRoot>> GetCanReceiveListAsync(AssignmentContext context)
|
2024-08-11 23:23:38 +08:00
|
|
|
|
{
|
2024-08-12 17:16:30 +08:00
|
|
|
|
//新手任务是要有前置依赖关系的,链表类型依赖
|
2024-08-12 23:23:29 +08:00
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
|
2024-08-11 23:23:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|