123456789101112131415161718192021222324252627 |
- using Microsoft.AspNetCore.Http;
- using Microsoft.AspNetCore.Mvc;
- using ProductionLineMonitor.Application.Services.EnergyConsumptionService.Dtos;
- using ProductionLineMonitor.Core.Dtos;
- using ProductionLineMonitor.Core.IRepositories;
- using ProductionLineMonitor.Core.Models;
- using ProductionLineMonitor.Core.Services;
- using ProductionLineMonitor.Web.Services;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using System.Security.Principal;
- namespace ProductionLineMonitor.Web.Controllers
- {
- [Route("api/[controller]")]
- [ApiController]
- public class ExternalController : ControllerBase
- {
- private readonly IUnitOfWork _unitOfWork;
- public ExternalController(IUnitOfWork unitOfWork)
- {
- _unitOfWork = unitOfWork;
- }
- }
- }
|