diff options
author | Ivan Ljubisavljevic <ivan996sk@gmail.com> | 2022-05-18 21:54:14 +0200 |
---|---|---|
committer | Ivan Ljubisavljevic <ivan996sk@gmail.com> | 2022-05-18 21:54:14 +0200 |
commit | 1b6a8d3a61b0c8afb916043f6b6bd069dac55e57 (patch) | |
tree | f23393d8e1010721db69a29720c02df7e0467fe4 /backend/api/api/Interfaces | |
parent | eaa1f809f8e95bd36803e4ff0c89cab420b46cfa (diff) |
GetModelById dodat - upgrade
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); |