2024-07-04 11:02:45 +05:00
|
|
|
using AsbCloudApp.Data;
|
2021-09-10 11:28:57 +05:00
|
|
|
using AsbCloudApp.Services;
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2022-06-06 15:43:47 +05:00
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2021-09-10 11:28:57 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
namespace AsbCloudWebApi.Controllers;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Редактор скважин для админки
|
|
|
|
/// </summary>
|
|
|
|
[Route("api/admin/well")]
|
|
|
|
[ApiController]
|
|
|
|
[Authorize]
|
|
|
|
public class AdminWellController : CrudController<WellDto, ICrudRepository<WellDto>>
|
2021-09-10 11:28:57 +05:00
|
|
|
{
|
2024-08-19 10:01:07 +05:00
|
|
|
public AdminWellController(IWellService service)
|
|
|
|
: base(service)
|
|
|
|
{ }
|
2021-09-10 11:28:57 +05:00
|
|
|
}
|