45 lines
952 B
C#
45 lines
952 B
C#
//
|
|
// Class: Response
|
|
// Current CLR: 4.0.30319.34209
|
|
// System: Microsoft Visual Studio 10.0
|
|
// Author: dani
|
|
// Created: 3/1/2015 8:12:08 PM
|
|
//
|
|
// Copyright (c) 2015 Informatikbüro Daniel Schick. All rights reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using bsmd.database;
|
|
|
|
namespace bsmd.dbh
|
|
{
|
|
public class Response
|
|
{
|
|
|
|
public static void ProcessResponse(response.Root response)
|
|
{
|
|
|
|
switch(response.Type)
|
|
{
|
|
case dbh.response.RootType.VISIT:
|
|
|
|
break;
|
|
case dbh.response.RootType.TRANSIT:
|
|
|
|
break;
|
|
case dbh.response.RootType.CANCEL:
|
|
|
|
break;
|
|
case dbh.response.RootType.RESET:
|
|
|
|
break;
|
|
case dbh.response.RootType.DATA:
|
|
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|