BaseService BL projektbe
This commit is contained in:
@@ -7,17 +7,20 @@ namespace WorkFlowCheck.BL.Services.Interfaces
|
||||
{
|
||||
Task<List<CheckPointDTO>> GetAllCheckPointAsync();
|
||||
Task<CheckPointDTO> GetCheckPointAsync(int id);
|
||||
Task<bool> DeleteCheckPointAsync(int id);
|
||||
Task<CheckPointDTO> UpdateCheckPointAsync(CheckPointDTO checkPointDTO);
|
||||
Task<List<CheckPointDTO>> UpdateAllCheckPointAsync(List<CheckPointDTO> checkPointListDTO);
|
||||
|
||||
|
||||
Task<List<LocationDTO>> GetAllLocationAsync();
|
||||
Task<LocationDTO> GetLocationAsync(int id);
|
||||
Task<bool> DeleteLocationAsync(int id);
|
||||
Task<LocationDTO> UpdateLocationAsync(LocationDTO LocationDTO);
|
||||
|
||||
|
||||
Task<List<EquipmentDTO>> GetAllEquipmentAsync();
|
||||
Task<EquipmentDTO> GetEquipmentAsync(int id);
|
||||
Task<bool> DeleteEquipmentAsync(int id);
|
||||
Task<EquipmentDTO> UpdateEquipmentAsync(EquipmentDTO EquipmentDTO);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user