forked from ddrilling/AsbCloudServer
23 lines
549 B
C#
23 lines
549 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using AsbCloudApp.Services;
|
|
|
|
namespace AsbCloudWebApi.Controllers
|
|
{
|
|
[Route("/mode")]
|
|
[ApiController]
|
|
public class DrillingParamsController : ControllerBase
|
|
{
|
|
private readonly IDrillingParamsService modeService;
|
|
|
|
public DrillingParamsController(IDrillingParamsService modeService)
|
|
{
|
|
this.modeService = modeService;
|
|
}
|
|
}
|
|
}
|