aboutsummaryrefslogtreecommitdiff
path: root/backend/api/api/Interfaces
diff options
context:
space:
mode:
authorTAMARA JERINIC <tamara.jerinic@gmail.com>2022-05-19 00:52:45 +0200
committerTAMARA JERINIC <tamara.jerinic@gmail.com>2022-05-19 00:52:45 +0200
commit3041334bd4686a8e0a9d434c2c99c13f39fa1ada (patch)
treef9abc0dff14d3d49d03a81134190cec14b053633 /backend/api/api/Interfaces
parentbd2f7b29e92e3cda13b0a77590c4c3c1e09870d1 (diff)
parent684b924b88e5aea92c74e58f3656b4518e3950ce (diff)
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into redesign
Diffstat (limited to 'backend/api/api/Interfaces')
-rw-r--r--backend/api/api/Interfaces/IModelService.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/api/api/Interfaces/IModelService.cs b/backend/api/api/Interfaces/IModelService.cs
index 8c4543de..41cd279c 100644
--- a/backend/api/api/Interfaces/IModelService.cs
+++ b/backend/api/api/Interfaces/IModelService.cs
@@ -6,6 +6,7 @@ namespace api.Services
public interface IModelService
{
Model GetOneModel(string userId, string name);
+ Model GetOneModelById(string userId, string name);
Model GetOneModel(string id);
List<Model> GetMyModels(string userId);
List<Model> GetMyModelsByType(string userId, string problemType);