Differences between revisions 2 and 3
Revision 2 as of 2020-10-06 16:22:24
Size: 1127
Editor: scot
Comment:
Revision 3 as of 2020-10-06 16:23:36
Size: 1128
Editor: scot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
{{{!highlight sql {{{#!highlight sql

HW3

To reproduce what I did in class:

   1 Create a Database with a table called movies
   2 CREATE TABLE movies (    
   3     ID  int primary key identity,
   4     Title       varchar(100) NOT NULL,
   5     ReleaseDate         date NOT NULL,
   6     Genre       varchar(100) NOT NULL
   7 );
  • Create a WCF Library that provides Create, Read, Update and Delete methods to manipulate data in the database.
  • Create a Windows WPF application that uses the webservice and provides all the CRUD operations (Create, Read, Update, Delete).

Points

  • Upload your entire project in a .zip file format (please clean your project before you zip it up)
  • Upload a video showing:
    1. Your service running from a web browser (20 points)
    2. That your client is using the service (you can show me the Connected Services JSON file) (20 points)
    3. Your WPF client accessing the service - it should list the movies in the database by default.
      1. Create Operation (with updated list) (20 points)
      2. Update Operation (with updated list) (20 points)
      3. Delete Operation (with updated list) (20 points)

WebServices/ProgrammingHomeworks2020/HW03 (last edited 2020-10-06 16:23:36 by scot)