2023-08-15 22:52:30 -05:00
|
|
|
|
using DamageAssesment.Api.Employees.Interfaces;
|
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.Employees.Controllers
|
|
|
|
|
{
|
|
|
|
|
[Route("api")]
|
|
|
|
|
[ApiController]
|
|
|
|
|
public class EmployeesController : ControllerBase
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
private IEmployeesProvider EmployeeProvider;
|
|
|
|
|
|
|
|
|
|
public EmployeesController(IEmployeesProvider EmployeesProvider)
|
|
|
|
|
{
|
|
|
|
|
this.EmployeeProvider = EmployeesProvider;
|
|
|
|
|
}
|
2023-08-24 20:25:38 -05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// GET request for retrieving employees.
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
2023-08-15 22:52:30 -05:00
|
|
|
|
[HttpGet("Employees")]
|
|
|
|
|
public async Task<ActionResult> GetEmployeesAsync()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
var result = await EmployeeProvider.GetEmployeesAsync();
|
|
|
|
|
if (result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
return Ok(result.Employees);
|
|
|
|
|
}
|
|
|
|
|
return NoContent();
|
|
|
|
|
|
|
|
|
|
}
|
2023-08-24 20:25:38 -05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// GET request for retrieving an employee by ID.
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
2023-08-15 22:52:30 -05:00
|
|
|
|
[HttpGet("Employees/{Id}")]
|
|
|
|
|
public async Task<ActionResult> GetEmployeeByIdAsync(string Id)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
var result = await EmployeeProvider.GetEmployeeByIdAsync(Id);
|
|
|
|
|
if (result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
return Ok(result.Employee);
|
|
|
|
|
}
|
|
|
|
|
return NotFound();
|
|
|
|
|
|
|
|
|
|
}
|
2023-08-24 20:25:38 -05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// PUT request for updating an existing employee.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="Employee">The updated employee object.</param>
|
2023-08-15 22:52:30 -05:00
|
|
|
|
[HttpPut("Employees")]
|
|
|
|
|
public async Task<IActionResult> UpdateEmployee(Db.Employee Employee)
|
|
|
|
|
{
|
|
|
|
|
if (Employee != null)
|
|
|
|
|
{
|
|
|
|
|
var result = await this.EmployeeProvider.UpdateEmployeeAsync(Employee);
|
|
|
|
|
if (result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
return Ok(result.Employee);
|
|
|
|
|
}
|
|
|
|
|
if (result.ErrorMessage == "Not Found")
|
|
|
|
|
return NotFound(result.ErrorMessage);
|
|
|
|
|
|
|
|
|
|
return BadRequest(result.ErrorMessage);
|
|
|
|
|
}
|
|
|
|
|
return NotFound();
|
|
|
|
|
}
|
2023-08-24 20:25:38 -05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// POST request for creating a new employee.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="Employee">The employee information for creating a new employee.</param>
|
2023-08-15 22:52:30 -05:00
|
|
|
|
[HttpPost("Employees")]
|
|
|
|
|
public async Task<IActionResult> CreateEmployee(Db.Employee Employee)
|
|
|
|
|
{
|
|
|
|
|
if (Employee != null)
|
|
|
|
|
{
|
|
|
|
|
var result = await this.EmployeeProvider.PostEmployeeAsync(Employee);
|
|
|
|
|
if (result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
return Ok(result.Employee);
|
|
|
|
|
}
|
|
|
|
|
return BadRequest(result.ErrorMessage);
|
|
|
|
|
}
|
|
|
|
|
return CreatedAtRoute("DefaultApi", new { id = Employee.Id }, Employee);
|
|
|
|
|
}
|
2023-08-24 20:25:38 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// DELETE request for deleting an existing employee.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The ID of the employee to be deleted.</param>
|
2023-08-15 22:52:30 -05:00
|
|
|
|
[HttpDelete("Employees/{id}")]
|
|
|
|
|
public async Task<IActionResult> DeleteEmployee(string id)
|
|
|
|
|
{
|
|
|
|
|
var result = await this.EmployeeProvider.DeleteEmployeeAsync(id);
|
|
|
|
|
if (result.IsSuccess)
|
|
|
|
|
{
|
|
|
|
|
return Ok(result.Employee);
|
|
|
|
|
}
|
|
|
|
|
return NotFound();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|