= HW02: WCF and SOAP Web Services = Reproduce what I did in class [[http://db.cs.southern.edu/videos/CPTR446/2018/MoviesWCFExample/MoviesWCFExample.html|In-class Video Demo]]: Create a Database with a table called movies {{{#!highlight sql CREATE TABLE movies ( ID int primary key identity, Title varchar(100) NOT NULL, ReleaseDate date NOT NULL, Genre varchar(100) NOT NULL); }}} Requirements: * Create a WCF Library that provide Create, Read, Update and Delete methods to manipulate data in the database. * Create a Windows forms application that uses the webservice and on a button click, shows the contents of the movies table.