getEmployeePostion method

Future<List<EmployeePosition>> getEmployeePostion()

Implementation

Future<List<EmployeePosition>> getEmployeePostion() async {
  final response = await EmployeesStub.getAllPositions(
      GetAllEmployeePositionsRequest());
  return response.positions;
}