HW02: WCF and SOAP Web Services

Reproduce what I did in class In-class Video Demo:

Create a Database with a table called movies

   1 CREATE TABLE movies (    
   2 ID              int primary key identity,
   3 Title           varchar(100) NOT NULL,
   4 ReleaseDate     date NOT NULL,
   5 Genre           varchar(100) NOT NULL);

Requirements: