milestone 2

9
Milestone 2 Ernie Costa Michael Daniels Lindsay Graham Erik Olson Dion St. Hilaire

Upload: ida

Post on 19-Mar-2016

44 views

Category:

Documents


0 download

DESCRIPTION

Milestone 2. Ernie Costa Michael Daniels Lindsay Graham Erik Olson Dion St. Hilaire. Milestone 2. Basic functionality for Client and Server applications Communication between both applications Implementation of Database schema. Communication between both applications. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Milestone 2

Milestone 2Ernie Costa

Michael DanielsLindsay Graham

Erik OlsonDion St. Hilaire

Page 2: Milestone 2

Basic functionality for Client and Server applications

Communication between both applications

Implementation of Database schema

Milestone 2

Page 3: Milestone 2

Communicationbetween both applications

Page 4: Milestone 2

Communicationbetween both applications

Page 5: Milestone 2

Basic functionality for Client & Server Applications

namespace mEYEtrak.Packets{ class RequestAccountInfoPacket : IPacket { string _user; DateTime _timestamp;

public RequestAccountInfoPacket(string user, DateTime timestamp) { _user = user; _timestamp = timestamp; }

public string User { get { return _user; } set { _user = value; } }

public DateTime Timestamp { get { return _timestamp; } set { _timestamp = value; } } }}

Page 6: Milestone 2

Demonstration

Communicationbetween both applications

Page 7: Milestone 2

Implementationof Database schema

Page 8: Milestone 2

Implementationof Database schema

Page 9: Milestone 2

Questions?