Ben Stoos has worked in the technology industry since 1992. Ben began their career at Gateway 2000 as a Sr. Network Support Specialist. In 2006, they moved to Dakota PC Warehouse as a Network Admin/Production Supervisor. In 2020, they joined Compute North as a Site Operations Manager. Currently, they are a Site Operations Manager at Foundry, a Digital Currency Group Company.
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-post-list',
templateUrl: './post-list.component.html',
styleUrls: ['./post-list.component.css']
})
export class PostListComponent implements OnInit {
@Input() postTitle: string;
@Input() postContent: string;
@Input() postLoveIts: number;
@Input() postCreatedAt: Date;
constructor() { }
ngOnInit() {
}
onLoveIt() {
this.postLoveIts++;
}
onDontLoveIt() {
this.postLoveIts--;
}
}
This person is not in the org chart
This person is not in any offices