320 lines
10 KiB
C#
320 lines
10 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using PolyclinicBusinessLogic.BusinessLogics;
|
|
using PolyclinicContracts.BindingModels;
|
|
using PolyclinicContracts.BusinessLogicsContracts;
|
|
using PolyclinicContracts.SearchModels;
|
|
using PolyclinicContracts.ViewModels;
|
|
using PolyclinicWebAppSuretor.Models;
|
|
using System.Diagnostics;
|
|
|
|
namespace PolyclinicWebAppSuretor.Controllers
|
|
{
|
|
public class HomeController : Controller
|
|
{
|
|
private readonly ILogger<HomeController> _logger;
|
|
private readonly IProcedureLogic _procedureLogic;
|
|
private readonly IMedicamentLogic _medicamentLogic;
|
|
private readonly IRecipeLogic _recipeLogic;
|
|
private readonly ISymptomLogic _symptomLogic;
|
|
|
|
public HomeController(ILogger<HomeController> logger,
|
|
IProcedureLogic procedureLogic,
|
|
IMedicamentLogic medicamentLogic,
|
|
IRecipeLogic recipeLogic,
|
|
ISymptomLogic symptomLogic)
|
|
{
|
|
_logger = logger;
|
|
_procedureLogic = procedureLogic;
|
|
_medicamentLogic = medicamentLogic;
|
|
_recipeLogic = recipeLogic;
|
|
_symptomLogic = symptomLogic;
|
|
}
|
|
|
|
public IActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public IActionResult Privacy()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public IActionResult Recipes()
|
|
{
|
|
List<RecipeViewModel> recipes = _recipeLogic.ReadList(null);
|
|
if (recipes == null)
|
|
{
|
|
recipes = new();
|
|
}
|
|
return View(recipes);
|
|
}
|
|
|
|
[HttpGet]
|
|
[HttpPost]
|
|
public IActionResult CreateRecipe(RecipeViewModel model)
|
|
{
|
|
ViewBag.Procedures = _procedureLogic.ReadList(null);
|
|
ViewBag.RecipeProcedures = _recipeLogic.
|
|
if (HttpContext.Request.Method == "GET")
|
|
{
|
|
ViewData["Title"] = "Íîâûé ðåöåïò";
|
|
return View();
|
|
}
|
|
else
|
|
{
|
|
// TODO ïðîïèñàòü UserId
|
|
RecipeBindingModel recipe = new RecipeBindingModel
|
|
{
|
|
Comment = model.Comment,
|
|
CourseId = model.CourseId,
|
|
ProceduresCount = model.ProceduresCount,
|
|
RecipeProcedures = model.RecipeProcedures
|
|
};
|
|
_recipeLogic.Create(recipe);
|
|
return RedirectToAction("Medicaments");
|
|
}
|
|
}
|
|
|
|
[HttpGet]
|
|
[HttpPost]
|
|
public IActionResult EditRecipe(MedicamentViewModel model)
|
|
{
|
|
if (HttpContext.Request.Method == "GET")
|
|
{
|
|
var obj = _medicamentLogic.ReadElement(new MedicamentSearchModel { Id = model.Id });
|
|
ViewData["Title"] = "Ðåäàêòèðîâàòü ïðåïàðàò";
|
|
return View("CreateMedicament", obj);
|
|
}
|
|
else
|
|
{
|
|
MedicamentBindingModel medicament = new MedicamentBindingModel
|
|
{
|
|
Id = model.Id,
|
|
Name = model.Name,
|
|
Comment = model.Comment ?? string.Empty,
|
|
SymptomId = model.SymptomId,
|
|
ProcedureId = model.ProcedureId,
|
|
};
|
|
_medicamentLogic.Update(medicament);
|
|
return RedirectToAction("Medicaments");
|
|
}
|
|
}
|
|
|
|
[HttpPost]
|
|
public IActionResult DeleteRecipe(int id)
|
|
{
|
|
var obj = _medicamentLogic.ReadElement(new MedicamentSearchModel { Id = id });
|
|
if (obj != null)
|
|
{
|
|
_medicamentLogic.Delete(new MedicamentBindingModel { Id = obj.Id });
|
|
}
|
|
return RedirectToAction("Medicaments");
|
|
}
|
|
|
|
public IActionResult Medicaments()
|
|
{
|
|
List<MedicamentViewModel> medicaments = _medicamentLogic.ReadList(null);
|
|
if (medicaments == null)
|
|
{
|
|
medicaments = new();
|
|
}
|
|
return View(medicaments);
|
|
}
|
|
|
|
[HttpGet]
|
|
[HttpPost]
|
|
public IActionResult CreateMedicament(MedicamentViewModel model)
|
|
{
|
|
ViewBag.Procedures = _procedureLogic.ReadList(null);
|
|
ViewBag.Symptomes = _symptomLogic.ReadList(null);
|
|
if (HttpContext.Request.Method == "GET")
|
|
{
|
|
ViewData["Title"] = "Íîâûé ïðåïàðàò";
|
|
return View();
|
|
}
|
|
else
|
|
{
|
|
// TODO ïðîïèñàòü UserId
|
|
MedicamentBindingModel medicament = new MedicamentBindingModel
|
|
{
|
|
Name = model.Name,
|
|
Comment = model.Comment ?? string.Empty,
|
|
SymptomId = model.SymptomId,
|
|
ProcedureId = model.ProcedureId,
|
|
};
|
|
_medicamentLogic.Create(medicament);
|
|
return RedirectToAction("Medicaments");
|
|
}
|
|
}
|
|
|
|
[HttpGet]
|
|
[HttpPost]
|
|
public IActionResult EditMedicament(MedicamentViewModel model)
|
|
{
|
|
if (HttpContext.Request.Method == "GET")
|
|
{
|
|
var obj = _medicamentLogic.ReadElement(new MedicamentSearchModel { Id = model.Id });
|
|
ViewData["Title"] = "Ðåäàêòèðîâàòü ïðåïàðàò";
|
|
return View("CreateMedicament", obj);
|
|
}
|
|
else
|
|
{
|
|
MedicamentBindingModel medicament = new MedicamentBindingModel
|
|
{
|
|
Id = model.Id,
|
|
Name = model.Name,
|
|
Comment = model.Comment ?? string.Empty,
|
|
SymptomId = model.SymptomId,
|
|
ProcedureId = model.ProcedureId,
|
|
};
|
|
_medicamentLogic.Update(medicament);
|
|
return RedirectToAction("Medicaments");
|
|
}
|
|
}
|
|
|
|
[HttpPost]
|
|
public IActionResult DeleteMedicament(int id)
|
|
{
|
|
var obj = _medicamentLogic.ReadElement(new MedicamentSearchModel { Id = id });
|
|
if (obj != null)
|
|
{
|
|
_medicamentLogic.Delete(new MedicamentBindingModel { Id = obj.Id });
|
|
}
|
|
return RedirectToAction("Medicaments");
|
|
}
|
|
|
|
|
|
public IActionResult Procedures()
|
|
{
|
|
List<ProcedureViewModel> procedure = _procedureLogic.ReadList(null);
|
|
if (procedure == null)
|
|
{
|
|
procedure = new();
|
|
}
|
|
return View(procedure);
|
|
}
|
|
|
|
[HttpGet]
|
|
[HttpPost]
|
|
public IActionResult CreateProcedure(ProcedureViewModel model)
|
|
{
|
|
if (HttpContext.Request.Method == "GET")
|
|
{
|
|
ViewData["Title"] = "Íîâàÿ ïðîöåäóðà";
|
|
return View();
|
|
}
|
|
else
|
|
{
|
|
// TODO ïðîïèñàòü UserId
|
|
ProcedureBindingModel procedure = new ProcedureBindingModel
|
|
{
|
|
Name = model.Name,
|
|
Comment = model.Comment ?? string.Empty,
|
|
DateStartProcedure = model.DateStartProcedure,
|
|
DateStopProcedure = model.DateStopProcedure
|
|
};
|
|
_procedureLogic.Create(procedure);
|
|
return RedirectToAction("Procedures");
|
|
}
|
|
}
|
|
|
|
[HttpGet]
|
|
[HttpPost]
|
|
public IActionResult EditProcedure(ProcedureViewModel model)
|
|
{
|
|
if (HttpContext.Request.Method == "GET")
|
|
{
|
|
var obj = _procedureLogic.ReadElement(new ProcedureSearchModel { Id = model.Id });
|
|
ViewData["Title"] = "Ðåäàêòèðîâàòü ïðîöåäóðó";
|
|
return View("CreateProcedure", obj);
|
|
}
|
|
else
|
|
{
|
|
ProcedureBindingModel procedure = new ProcedureBindingModel
|
|
{
|
|
Id = model.Id,
|
|
Name = model.Name,
|
|
Comment = model.Comment,
|
|
DateStartProcedure = model.DateStartProcedure,
|
|
DateStopProcedure = model.DateStopProcedure
|
|
};
|
|
_procedureLogic.Update(procedure);
|
|
return RedirectToAction("Procedures");
|
|
}
|
|
}
|
|
|
|
[HttpPost]
|
|
public IActionResult DeleteProcedure(int id)
|
|
{
|
|
var obj = _procedureLogic.ReadElement(new ProcedureSearchModel { Id = id });
|
|
if (obj != null)
|
|
{
|
|
_procedureLogic.Delete(new ProcedureBindingModel { Id = obj.Id });
|
|
}
|
|
return RedirectToAction("Procedures");
|
|
}
|
|
|
|
public IActionResult ListCoursesByProcedures()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public IActionResult AddSymptomToMedicament()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
[HttpGet]
|
|
[HttpPost]
|
|
public IActionResult ProceduresReport()
|
|
{
|
|
if (HttpContext.Request.Method == "POST")
|
|
{
|
|
ViewData["ShowReport"] = true;
|
|
return View();
|
|
}
|
|
else
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
|
|
[HttpGet]
|
|
[HttpPost]
|
|
public IActionResult Login()
|
|
{
|
|
if (HttpContext.Request.Method == "POST")
|
|
{
|
|
// êàêèå-òî äåéñòâèÿ ïðè íàæàòèè êíîïêè âõîäà
|
|
return View();
|
|
}
|
|
else
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
|
|
[HttpGet]
|
|
[HttpPost]
|
|
public IActionResult Register()
|
|
{
|
|
if (HttpContext.Request.Method == "POST")
|
|
{
|
|
// êàêèå-òî äåéñòâèÿ ïðè íàæàòèè êíîïêè
|
|
return View();
|
|
}
|
|
else
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
|
|
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
|
public IActionResult Error()
|
|
{
|
|
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
|
|
}
|
|
}
|
|
}
|