aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Interfaces/ILanguageRepository.cs
blob: 40dd4619e995d6b90ff83e6bde7c4a70e2f56445 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Threading.Tasks;
using DevHive.Data.Models;
using DevHive.Data.Repositories.Interfaces;

namespace DevHive.Data.Interfaces
{
	public interface ILanguageRepository : IRepository<Language>
	{
		Task<bool> DoesLanguageExistAsync(Guid id);
		Task<bool> DoesLanguageNameExistAsync(string languageName);
	}
}