diff --git a/Tsi1.Api/Tsi1.BusinessLayer/Interfaces/IFileService.cs b/Tsi1.Api/Tsi1.BusinessLayer/Interfaces/IFileService.cs
index 594623d0c22e18ee27be1636c9777750c92ff250..4b5b68094ec45f6fc106e986d09f1da47cde6f57 100644
--- a/Tsi1.Api/Tsi1.BusinessLayer/Interfaces/IFileService.cs
+++ b/Tsi1.Api/Tsi1.BusinessLayer/Interfaces/IFileService.cs
@@ -1,4 +1,4 @@
-using Microsoft.AspNetCore.Http;
+using Microsoft.AspNetCore.Http;
 using System;
 using System.Collections.Generic;
 using System.Text;
@@ -10,8 +10,6 @@ namespace Tsi1.BusinessLayer.Interfaces
 {
     public interface IFileService
     {
-        //Task<ServiceResult<FileDto>> SaveFile(IFormFile file);
-
         Task<ServiceResult<FileDto>> Create(IFormFile file, int tenantId, int courseId);
     }
 }