c# code samples

9
Allen Struck Professional Software Developer C#.net Portfolio N-tier layered application Defining a class object Use of iComparable, iEnumerable interfaces Use of Regex for input data validation ADO.net – use of table adapter ADO.net executing a SQL Server stored procedure ASP.net – use of Master Page App.config – used for accessing connection string Email: [email protected] cell: 440-666-9004

Upload: astruck

Post on 19-Jun-2015

810 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: C# Code Samples

Allen Struck Professional Software Developer

C#.net Portfolio

N-tier layered application Defining a class object Use of iComparable, iEnumerable interfaces Use of Regex for input data validation ADO.net – use of table adapter ADO.net – executing a SQL Server stored procedure ASP.net – use of Master Page App.config – used for accessing connection string

Email: [email protected] cell: 440-666-9004

Page 2: C# Code Samples

Multi-layered Web ApplicationData Access Layer

Page 3: C# Code Samples

BackgroundThese code samples have been amassed

from multiple project assignments

• Create an order entry console application using various .net Framework class objects and interfaces as well as custom classes, interfaces, and data structures.

• Create a Windows Application for a public library. Used to maintain library card records and to check in/out materials. Used pre-defined data access objects.

• Modify library application by designing and coding custom ADO.net data access objects and custom SQL Server stored procedures .

• Modify library application replacing Windows forms with ASP pages• Design and code a Windows application for drafting online exams and

assigning them to specific training programs

Page 4: C# Code Samples

Multi-layer Web ApplicationBusiness Layer with XML documentation comments

Page 5: C# Code Samples

N-tier Web Application asp using Master Page

Page 6: C# Code Samples

Using app.config in data layer for accessing connection string

Page 7: C# Code Samples

Data Access using ADO table adapter

Page 8: C# Code Samples

Defining properties for a product class.

Page 9: C# Code Samples

Using Regex for input validation