forked from ddrilling/AsbCloudServer
28 lines
627 B
C#
28 lines
627 B
C#
using AsbCloudApp.Data;
|
|
using AsbCloudApp.Services;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace AsbCloudWebApi.Controllers
|
|
{
|
|
[Route("api/well/{idWell}")]
|
|
[ApiController]
|
|
[Authorize]
|
|
public class WellSectionController : CrudController<WellSectionDto>
|
|
{
|
|
public WellSectionController(ICrudService<WellSectionDto> service)
|
|
: base(service)
|
|
{
|
|
|
|
}
|
|
|
|
[HttpGet]
|
|
[Route("")]
|
|
public virtual IActionResult GetAll()
|
|
{
|
|
var result = service.GetAll();
|
|
return Ok(result);
|
|
}
|
|
}
|
|
}
|