32 lines
874 B
C#
32 lines
874 B
C#
|
using FrontendWebApi.Models;
|
|||
|
using iTextSharp.text;
|
|||
|
using iTextSharp.text.html.simpleparser;
|
|||
|
using iTextSharp.text.pdf;
|
|||
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
using Microsoft.Extensions.Logging;
|
|||
|
using Newtonsoft.Json;
|
|||
|
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 EmergencyContactController : MyBaseController<EmergencyContactController>
|
|||
|
{
|
|||
|
private readonly IBackendRepository backendRepository;
|
|||
|
public EmergencyContactController(IBackendRepository backendRepository)
|
|||
|
{
|
|||
|
this.backendRepository = backendRepository;
|
|||
|
}
|
|||
|
public IActionResult Index()
|
|||
|
{
|
|||
|
return View();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|