Renamed CrudController to LastDataController

This commit is contained in:
KharchenkoVV 2021-08-02 12:59:43 +05:00
parent d5d52daa53
commit 10e7b436c5

View File

@ -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;