
So what are all the properties of MemberShipPlan that we require: MemberShip : Name of MemberShip e.g. Gold, Platinum Description : A brief description of the plan MonthlyFee : Fee of the plan if paid monthly. QuarterlyFee : Fee of Read More …
So what are all the properties of MemberShipPlan that we require: MemberShip : Name of MemberShip e.g. Gold, Platinum Description : A brief description of the plan MonthlyFee : Fee of the plan if paid monthly. QuarterlyFee : Fee of Read More …
You might have already discovered that we are mainly dealing with Member, MemberShipPlan and Fee in this application as our data collection. If you have not figured that out till now, please read previous contents again and ponder on them. Read More …
Create solution “ClubManager” Fire your visual studio (Microsoft Visual Studio 2010 in our case). We are going to name our application ClubManager and same will be our solution name. Our application is a windows form application. So let us create Read More …
Let us now discuss on some of the technical aspects regarding what all technologies we will be using and how the project is going to be organized. Firstly you should be aware that this is going to be a windows Read More …
We will be creating a windows application named “Club Manager” in C# using MongoDB as our active database. This application can be used at any subscription based scenario, e.g. Gym Sports Complex Clubs This application will be used by the Read More …
JSON stands for JavaScript Object Notation. It is easy to read, write, understand, parse and generate. It is a collection of key value pairs where key can be any arbitrary string and value can take one of the many forms available Read More …
MongoDB is an open source, document oriented database written in C++ featuring dynamic schema and classified as a NoSQL database. Documents (refers to rows in table based schema) are stored in collections (refers to table in table based schema). Some of the Read More …
What to do Command Check disk usage df -h Start service service mongodb start Stop service service mongodb stop Restart service service mongodb restart Change ownership of folder chown username fldrname chown username:groupname fldrname
In last article we wrote about Installing Oracle VM VirtualBox and now we install Ubuntu on our virtualbox. If you already know installation of any flavor of Linux/Unix you should be able to install it with ease. There is not Read More …
First of all you need Oracle VirtualBox setup, download the same from Official website for your operating system (from here onward it will be called host operating system). We already discussed what is Oracle VirtualBox and why should we install it. Read More …