mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
28 lines
715 B
C#
28 lines
715 B
C#
using Govor.Application.Interfaces;
|
|
using Govor.Core.Models;
|
|
using Govor.Core.Repositories.PrivateChats;
|
|
using Govor.Data.Repositories.Exceptions;
|
|
|
|
namespace Govor.Application.Services;
|
|
|
|
public class UserPrivateChatsGetter : IUserPrivateChatsGetterService
|
|
{
|
|
private readonly IPrivateChatsRepository _groupRep;
|
|
|
|
public UserPrivateChatsGetter(IPrivateChatsRepository groupsRepository)
|
|
{
|
|
_groupRep = groupsRepository;
|
|
}
|
|
|
|
public async Task<List<PrivateChat>> GetUserChatsAsync(Guid userId)
|
|
{
|
|
try
|
|
{
|
|
return await _groupRep.GetAllOfUser(userId);
|
|
}
|
|
catch (NotFoundByKeyException<Guid> ex)
|
|
{
|
|
return [];
|
|
}
|
|
}
|
|
} |