PluralKit/PluralKit.Core/Database/Repository/ModelRepository.Context.cs

23 lines
721 B
C#
Raw Normal View History

2021-08-27 15:03:47 +00:00
using System.Collections.Generic;
using System.Threading.Tasks;
namespace PluralKit.Core
{
2020-08-29 11:46:27 +00:00
public partial class ModelRepository
{
public Task<MessageContext> GetMessageContext(ulong account, ulong guild, ulong channel)
=> _db.QuerySingleProcedure<MessageContext>("message_context", new
{
account_id = account,
guild_id = guild,
channel_id = channel
});
2021-08-27 15:03:47 +00:00
public Task<IEnumerable<ProxyMember>> GetProxyMembers(ulong account, ulong guild)
=> _db.QueryProcedure<ProxyMember>("proxy_members", new
{
account_id = account,
guild_id = guild
});
}
}