diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-05-18 21:56:28 +0200 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-05-18 21:56:28 +0200 |
commit | 440bab1a232a787d3b66767fffc3c7f28d5dae21 (patch) | |
tree | 99ed9f381b45988456d5a67f67397e7dff844757 /backend/api/api/Interfaces | |
parent | e67d39d44bdb7d582964cbd643098b38dddd9c94 (diff) | |
parent | 1b6a8d3a61b0c8afb916043f6b6bd069dac55e57 (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.cs | 1 |
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); |