aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/Services/DevHive.Services/Interfaces')
-rw-r--r--src/Services/DevHive.Services/Interfaces/ICloudService.cs2
-rw-r--r--src/Services/DevHive.Services/Interfaces/IRoleService.cs2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/Services/DevHive.Services/Interfaces/ICloudService.cs b/src/Services/DevHive.Services/Interfaces/ICloudService.cs
index 3ae7a24..040729f 100644
--- a/src/Services/DevHive.Services/Interfaces/ICloudService.cs
+++ b/src/Services/DevHive.Services/Interfaces/ICloudService.cs
@@ -9,8 +9,6 @@ namespace DevHive.Services.Interfaces
{
Task<List<string>> UploadFilesToCloud(List<IFormFile> formFiles);
- // Task<List<FileContentResult>> GetFilesFromCloud(List<string> fileUrls);
-
Task<bool> RemoveFilesFromCloud(List<string> fileUrls);
}
}
diff --git a/src/Services/DevHive.Services/Interfaces/IRoleService.cs b/src/Services/DevHive.Services/Interfaces/IRoleService.cs
index 2c31b06..05df917 100644
--- a/src/Services/DevHive.Services/Interfaces/IRoleService.cs
+++ b/src/Services/DevHive.Services/Interfaces/IRoleService.cs
@@ -6,7 +6,7 @@ namespace DevHive.Services.Interfaces
{
public interface IRoleService
{
- Task<Guid> CreateRole(CreateRoleServiceModel roleServiceModel);
+ Task<Guid> CreateRole(CreateRoleServiceModel createRoleServiceModel);
Task<RoleServiceModel> GetRoleById(Guid id);