forked from ddrilling/AsbCloudServer
Renamed CrudController to LastDataController
This commit is contained in:
parent
d5d52daa53
commit
10e7b436c5
@ -6,12 +6,12 @@ namespace AsbCloudWebApi.Controllers
|
|||||||
{
|
{
|
||||||
[ApiController]
|
[ApiController]
|
||||||
[Authorize]
|
[Authorize]
|
||||||
public abstract class CrudController<T> : ControllerBase where T : class
|
public abstract class LastDataController<T> : ControllerBase where T : class
|
||||||
{
|
{
|
||||||
private readonly ILastDataService<T> lastDataService;
|
private readonly ILastDataService<T> lastDataService;
|
||||||
private readonly IWellService wellService;
|
private readonly IWellService wellService;
|
||||||
|
|
||||||
public CrudController(ILastDataService<T> lastDataService, IWellService wellService)
|
public LastDataController(ILastDataService<T> lastDataService, IWellService wellService)
|
||||||
{
|
{
|
||||||
this.lastDataService = lastDataService;
|
this.lastDataService = lastDataService;
|
||||||
this.wellService = wellService;
|
this.wellService = wellService;
|
Loading…
Reference in New Issue
Block a user