fix(esppSync, dal, api): Исправление после удаления старых ShortCodes
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using AutoMapper;
|
||||
using PARR.API.Contracts.V1.Responses;
|
||||
using PARR.DAL.DomainServices;
|
||||
using PARR.DAL.Models;
|
||||
|
||||
namespace PARR.API.MappingProfiles.Resolvers
|
||||
{
|
||||
public class RobotTaskTemplateShortCodeResolver : IValueResolver<RobotConfiguration, RobotTaskTemplateResponse, string>
|
||||
{
|
||||
private readonly IShortcodesService shortcodesService;
|
||||
|
||||
public RobotTaskTemplateShortCodeResolver(
|
||||
IShortcodesService shortcodesService
|
||||
)
|
||||
{
|
||||
this.shortcodesService = shortcodesService;
|
||||
}
|
||||
public string Resolve(RobotConfiguration source, RobotTaskTemplateResponse destination, string destMember, ResolutionContext context)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user