Example #1
0
 public IHttpActionResult DeleteEmployeeById(Guid id)
 {
     empService.DeleteEmployeeDTO(id);
     return(Ok("Employee Successfully Removed"));
 }