adminsettings
This commit is contained in:
@@ -1,13 +1,14 @@
|
||||
// src/Webshop.Application/Services/Admin/Interfaces/IAdminSettingService.cs
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Webshop.Application;
|
||||
using Webshop.Application.DTOs.Settings;
|
||||
|
||||
namespace Webshop.Application.Services.Admin.Interfaces
|
||||
{
|
||||
public interface IAdminSettingService
|
||||
{
|
||||
Task<Dictionary<string, List<SettingDto>>> GetAllGroupedAsync();
|
||||
Task UpdateSettingsAsync(List<SettingDto> settings);
|
||||
Task<ServiceResult<Dictionary<string, List<SettingDto>>>> GetAllGroupedAsync();
|
||||
Task<ServiceResult> UpdateSettingsAsync(List<SettingDto> settings);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user