diff options
author | Danijel Anđelković <adanijel99@gmail.com> | 2022-05-20 00:28:05 +0200 |
---|---|---|
committer | Danijel Anđelković <adanijel99@gmail.com> | 2022-05-20 00:28:05 +0200 |
commit | 423faeef851d141d02cbebb59be1d9f9e2c2a9d1 (patch) | |
tree | 7efac7bd0b2d42fa82aa1218dea4b8c4f3f33f5c /backend/api/api/Interfaces | |
parent | 4229eae95fb6daab9ccb6ab0ae05e29689588eb2 (diff) | |
parent | 638f410ad569c632c8dab6cdf66d6b5fd90d5b0c (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/IPredictorService.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/api/api/Interfaces/IPredictorService.cs b/backend/api/api/Interfaces/IPredictorService.cs index 16f0432a..8a8308be 100644 --- a/backend/api/api/Interfaces/IPredictorService.cs +++ b/backend/api/api/Interfaces/IPredictorService.cs @@ -12,5 +12,6 @@ namespace api.Services List<Predictor> GetPublicPredictors(); List<Predictor> SortPredictors(string userId, bool ascdsc, int latest); void Update(string id, Predictor predictor); + public Predictor Exists(string modelId, string experimentId); } }
\ No newline at end of file |