diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-05-04 21:08:42 +0200 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-05-04 21:08:42 +0200 |
commit | ae29f2f27d680d4152d3f19eb1db284aa951d0cd (patch) | |
tree | dd496c27529c53ce6ba0c102d62fcef367d6a902 /backend/api/api/Interfaces | |
parent | bae455c30570d97ded6a291238f2393628d7cefa (diff) |
Izmena eksperimenta - uskladjeni back i front.
Diffstat (limited to 'backend/api/api/Interfaces')
-rw-r--r-- | backend/api/api/Interfaces/IExperimentService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/api/api/Interfaces/IExperimentService.cs b/backend/api/api/Interfaces/IExperimentService.cs index 311560e8..7e59ace3 100644 --- a/backend/api/api/Interfaces/IExperimentService.cs +++ b/backend/api/api/Interfaces/IExperimentService.cs @@ -9,7 +9,7 @@ namespace api.Services public List<Experiment> GetMyExperiments(string id); public Experiment Get(string uploaderId, string name); Experiment GetOneExperiment(string userId, string id); - void Update(string userId, string id, Experiment experiment); + Experiment Update(string userId, string id, Experiment experiment); void Delete(string userId, string id); } |