15 lines
391 B
C#
15 lines
391 B
C#
using IRaCIS.Application.ViewModels;
|
|
using System;
|
|
using IRaCIS.Core.Application.Contracts.RequestAndResponse;
|
|
|
|
namespace IRaCIS.Application.Interfaces
|
|
{
|
|
public interface IImageService
|
|
{
|
|
IResponseOutput AddImage(ImageCommand model,Guid userId);
|
|
IResponseOutput DeleteImage(Guid id);
|
|
//PageOutput<ImageDetailDTO> GetImageList(ImageQueryDTO param);
|
|
|
|
}
|
|
}
|