20 lines
398 B
C#
20 lines
398 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Drawing.Imaging;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using ViewModels;
|
|
|
|
namespace SupplierManager.Controllers
|
|
{
|
|
[Route("api/[controller]/[action]")]
|
|
[ApiController]
|
|
public class PanelSelectionController : ControllerBase
|
|
{
|
|
|
|
}
|
|
|
|
} |