blob: 7c126a49081883c28fb0ba8f02766482aa842360 (
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 ITechnologyRepository : IRepository<Technology>
{
Task<bool> DoesTechnologyExistAsync(Guid id);
Task<bool> DoesTechnologyNameExist(string technologyName);
}
}
|