Skip to content
Permalink
4afaaccfe3
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
24 lines (21 sloc) 586 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using EnigmaX.Classes;
namespace Enigma.Stations
{
class WaiterStation : Station
{
public WaiterStation(string stationid) : base(StationTypeDef.host, stationid)
{
Employee activeEmployee = SystemFunctions.showPinScreenUntilAuthenticated(EmployeeRole.host);
view = new StationsGUI.WaiterStationView();
}
public override void showView()
{
view.Show();
}
}
}