20
.NET PORTFOLIO Matthew Swanger [email protected] (720) 319-8354

Matthew Swanger .NET Portfolio

Embed Size (px)

DESCRIPTION

Dedicated and resolute C# Software Developer/Programmer with experience using object oriented design techniques and programming languages, including Microsoft .NET Technologies.

Citation preview

Page 1: Matthew Swanger .NET Portfolio

.NET PORTFOLIOMatthew [email protected](720) 319-8354

Page 2: Matthew Swanger .NET Portfolio

Table of Contents

0.NET Framework Project3

0Library Phase 1 Project6

0Library Phase 2 Project11

0Library Phase 3 Project16

Page 3: Matthew Swanger .NET Portfolio

.NET Framework Project0Objective

0 For this project, the objective was to create the business tier for a retail company. This was achieved by creating and testing two assemblies: Foundation and AppTypes.

0Summary0 The AppTypes assembly is a Class library project that contains many entity,

collection and exception classes that are used to facilitate most of the business processes.

0 The Foundation assembly is a Class library project that contains the base classes and interfaces used in the project.

0 This project focused predominantly on the various aspects of .NET Object-oriented programming with C#. Some of the highlights of this project include the use of C# properties, abstract classes and methods, inheritance, method overloading and overriding, interfaces, attributes, enums, custom exceptions, generics, delegates and collections.

Page 4: Matthew Swanger .NET Portfolio

Foundation Assembly.NET Framework Project

Page 5: Matthew Swanger .NET Portfolio

AppTypes Assembly.NET Framework Project

Page 6: Matthew Swanger .NET Portfolio

Library Phase 1 Project0Objective

0 For this project, the objective was to create a Windows Forms-based application that would serve as the user interface tier to the supplied library book management database. This visual interface is responsible for providing a librarian with access to the day-to-day actions preformed in a library.

0 Summary0 The focus of this project was on Windows Forms programming and it was built

with an N-tiered approach in mind. The Business layer, The Data Access layer and the database where provided, so I was responsible for creating an effective front-end application to work with what was given.

0 Requirements0 Design and develop a front end application that satisfies the four basic functionalities:

Add Adult, Add Juvenile, Check-In a book and Check-Out a book.0 Develop code that is easily maintainable.0 Provide validation for all required fields.0 Provide adequate error handling.0 Provide a user interface that is intuitive, requiring minimal training for users while

minimizing resource utilization.

Page 7: Matthew Swanger .NET Portfolio

Add Adult and Juvenile Member FormsLibrary Phase 1 Project

Page 8: Matthew Swanger .NET Portfolio

Check In and Check Out FormsLibrary Phase 1 Project

Page 9: Matthew Swanger .NET Portfolio

Add Adult Member CodeLibrary Phase 1 Project

Page 10: Matthew Swanger .NET Portfolio

Check In Book CodeLibrary Phase 1 Project

Page 11: Matthew Swanger .NET Portfolio

Library Phase 2 Project0Objective

0 For this project, the objective was to write my own Business and Data Access layers replacing the layers that were provided in Phase 1 while continuing to support the Windows Forms-based front-end application I created in Phase 1.

0Summary0 The focus of this project was predominantly on ADO.NET and T-SQL

programming while keeping to the N-tiered structure used in Phase 1.0 I created T-SQL Stored Procedures for all the Library Functions (Check In,

Check Out, Add Member, etc…) which were then called by the Data Access Layer methods. The Business Layer served to enforce the business logic and also to act as the middleman between the user interface and the Data Access Layer.

0 I used ADO.NET to communicate with the database. Also, I chose to use Strongly Typed DataSets for this project to reduce the amount of coding required and also the likelihood of errors.

Page 12: Matthew Swanger .NET Portfolio

0Requirements0 Design the Business and Data Access tiers.0 Develop code that is easily maintainable.0 Provide adequate error handling.0 Use database-programming techniques

that provide maximum programming flexibility and control while minimizing resource utilization.

Library Phase 2 Project

Page 13: Matthew Swanger .NET Portfolio

Check In Book Stored ProcedureLibrary Phase 2 Project

Page 14: Matthew Swanger .NET Portfolio

Check In Book Stored Procedure (Continued)Library Phase 2 Project

Page 15: Matthew Swanger .NET Portfolio

Check In Book Data Access LayerLibrary Phase 2 Project

Page 16: Matthew Swanger .NET Portfolio

Library Phase 3 Project0Objective

0 For this project, the objective was to write a web application that supports all the functionality required in Phase 1 and 2 of the Library project.

0Summary0 The focus of this project centered around ASP.NET programming and keeping

the N-tiered approach used in Phase 1 and Phase 2.0 The web application created for this project is meant to serve as an

alternative user interface, while leaving the Phase 1 Windows Forms-based application unchanged and fully functional. This project will make use of the Business and Data Access layers I created in Phase 2.

0 Highlights of this ASP.NET project include the use of master pages, membership and role management, forms-based authorization and authentication, data preservation using ViewState and Session State objects, partial page postbacks with Ajax, databindings, exception handling and input validation with validator controls.

Page 17: Matthew Swanger .NET Portfolio

0Additional Requirements0 When displaying an adult’s membership information, the

application should detect if the membership is expired and provide the librarian an option to renew the membership. Also, members with expired memberships cannot check out books.

0 When working with juvenile members the application will check to ensure that the member is less then 18 years of age, if the member is older then 18 their membership will be automatically converted to an adult membership.

0 Librarians must be able to enter new books into the database.0 All Overdue books, shown in the application must be

highlighted.0 The design of the Member Information page must include the

use of AJAX controls so that the check in and check out functionality cause only a partial page postback.

0 The application must use hyperlinks to navigate between pages.

Library Phase 3 Project

Page 18: Matthew Swanger .NET Portfolio

Website Member Information – Check In BookLibrary Phase 3 Project

Page 19: Matthew Swanger .NET Portfolio

Website Member Information – Check Out BookLibrary Phase 3 Project

Page 20: Matthew Swanger .NET Portfolio

Check Out Book – HTML Markup and C# CodeLibrary Phase 3 Project