2022-05-22 21:18:43 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using AsbCloudApp.Services;
|
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudWebApi.Controllers
|
|
|
|
|
{
|
2022-05-25 20:19:08 +05:00
|
|
|
|
[Route("api/driller")]
|
2022-05-22 21:18:43 +05:00
|
|
|
|
[ApiController]
|
|
|
|
|
[Authorize]
|
2022-05-26 13:34:40 +05:00
|
|
|
|
public class DrillerController : CrudController<DrillerDto, IDrillerService>
|
2022-05-22 21:18:43 +05:00
|
|
|
|
{
|
2022-05-25 20:19:08 +05:00
|
|
|
|
public DrillerController(IDrillerService drillerService)
|
2022-06-15 14:57:37 +05:00
|
|
|
|
: base(drillerService)
|
|
|
|
|
{ }
|
2022-05-22 21:18:43 +05:00
|
|
|
|
}
|
|
|
|
|
}
|