blob: 3c4a6b6d5eff91fe5beba84f6b72ced618010b1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using DevHive.Data.Models;
using System;
using System.Threading.Tasks;
namespace DevHive.Data.Repositories.Contracts
{
public interface ITechnologyRepository : IRepository<Technology>
{
public Task<bool> DoesTechnologyNameExist(string technologyName);
public Task<bool> DoesTechnologyExist(Guid id);
}
}
|