35 lines
896 B
C#
35 lines
896 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Logging;
|
|
using Newtonsoft.Json;
|
|
using NPOI.HSSF.UserModel;
|
|
using NPOI.SS.UserModel;
|
|
using NPOI.XSSF.UserModel;
|
|
using Repository.BackendRepository.Interface;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FrontendWebApi.Controllers
|
|
{
|
|
public class RescueDeviceController : MyBaseController<RescueDeviceController>
|
|
{
|
|
private readonly IBackendRepository backendRepository;
|
|
|
|
public RescueDeviceController(IBackendRepository backendRepository)
|
|
{
|
|
this.backendRepository = backendRepository;
|
|
}
|
|
public IActionResult FireExtinguisher()
|
|
{
|
|
return View();
|
|
}
|
|
public IActionResult AED()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|