23 lines
678 B
C#
23 lines
678 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using AutoMapper;
|
|
using xAiModels.Interfaces.Dtos;
|
|
using xAiModels.Interfaces.Entities;
|
|
using xAiModels.Models.Dtos;
|
|
using xAiModels.Models.Entities;
|
|
using xDataService.Providers;
|
|
|
|
namespace xAiModels.Providers.Dtos
|
|
{
|
|
public class XAiConversationRepositoryService : XBaseRepositoryService<XAiConversation, XAiConversationDto, Guid>, IXAiConversationRepositoryService
|
|
{
|
|
public XAiConversationRepositoryService(
|
|
IXAiConversationRepository repository,
|
|
IEnumerable<Profile> mapperProfiles = null
|
|
) : base(
|
|
repository,
|
|
mapperProfiles
|
|
)
|
|
{ }
|
|
}
|
|
} |