17 lines
523 B
C#
17 lines
523 B
C#
using BeWo.Data.Entities;
|
|
using BeWo.Service.DCEntityMapper;
|
|
using BS.Shared.DataContracts.Feature.AI;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Service.BusinessLogic
|
|
{
|
|
public class AiPromptbausteinRoutineLogic : GenericBusinessLogic<AiPromptbausteinRoutineDC, AiPromptbausteinRoutine>
|
|
{
|
|
public override IDCEntityMapper<AiPromptbausteinRoutine, AiPromptbausteinRoutineDC> Mapper => MapperFactory.AiPromptbausteinRoutine;
|
|
}
|
|
}
|