mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-19 11:04:23 +00:00

- Extracts the image creation into a service - Refactors Files Page GET action for better readability and cyclomatic complexity
14 lines
351 B
C#
14 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Oqtane.Services
|
|
{
|
|
public interface IImageService
|
|
{
|
|
public string CreateImage(string filepath, int width, int height, string mode, string position, string background, string rotate, string imagepath);
|
|
}
|
|
}
|