= HW3 =

To reproduce what I did in class:

{{{#!highlight sql
Create a Database with a table called movies
CREATE TABLE movies (    
    ID 	int primary key identity,
    Title 	varchar(100) NOT NULL,
    ReleaseDate    	date NOT NULL,
    Genre 	varchar(100) NOT NULL
);
}}}

 * 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)
   1. That your client is using the service (you can show me the Connected Services JSON file) (20 points)
   1. Your WPF client accessing the service - it should list the movies in the database by default.
      i. Create Operation (with updated list) (20 points)
      i. Update Operation (with updated list) (20 points)
      i. Delete Operation (with updated list) (20 points)