9 lines
228 B
C#
9 lines
228 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace BelegeingangDatabase.Repositories
|
|
{
|
|
public interface IMessageRepository : IGenericRepository<Email>
|
|
{
|
|
Task<Email> GetByMessageIdAsync(string messageId);
|
|
}
|
|
} |