Posts

Showing posts from December, 2009

Implementing database concepts to develop an application in agile approach : Part 1.3 (Coding)

Image
Hello everyone. In my last two post, i have showed how to create a database according to the user's story. In this post, i will show you how to develop/code the application to access the database. I am assuming you all know how to create an application in visual studio 2008 and run it. So, i am not discussing the steps of creating a windows application in Visual Studio IDE. If you have problem in this, please find my other posts in where i have discussed about creating the desktop application in C#. Ok. Lets start. Open Visual Studio 2008 Create a desktop application named ‘ABCUniversityApplication’ Create a windows form named ‘StudentEntryUI’ We have found an object student from our problem domain. So create a class Student which have name, email address, address and phone number as its data. Create a constructor to assign these values when creating a new student object.  public class Student       {   private string name;         private string emailAddress;