aboutsummaryrefslogtreecommitdiff
path: root/backend/api/api/Interfaces
diff options
context:
space:
mode:
authorIvan Ljubisavljevic <ivan996sk@gmail.com>2022-05-18 21:54:14 +0200
committerIvan Ljubisavljevic <ivan996sk@gmail.com>2022-05-18 21:54:14 +0200
commit1b6a8d3a61b0c8afb916043f6b6bd069dac55e57 (patch)
treef23393d8e1010721db69a29720c02df7e0467fe4 /backend/api/api/Interfaces
parenteaa1f809f8e95bd36803e4ff0c89cab420b46cfa (diff)
GetModelById dodat - upgrade
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);