blob: 1d4fa8b3b844d549865eb3a264696dec62fe9406 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using DevHive.Services.Models.Technology;
namespace DevHive.Services.Interfaces
{
public interface ITechnologyService
{
Task<Guid> Create(CreateTechnologyServiceModel technologyServiceModel);
Task<CreateTechnologyServiceModel> GetTechnologyById(Guid id);
HashSet<ReadTechnologyServiceModel> GetTechnologies();
Task<bool> UpdateTechnology(UpdateTechnologyServiceModel updateTechnologyServiceModel);
Task<bool> DeleteTechnology(Guid id);
}
}
|