A Bit Above LLC
Custom Programming and Business Intelligence
Our Company:
Mission Statement What makes us “A Bit Above”
Mission Statement
Our Mission

To provide high quality custom software that inovates for our customers and promotes their overall business.
using System;
using System.Collections;
using System.Threading;

/// <summary> /// Mission
    statement for A Bit Above LLC
/// </summary>
namespace ABitAboveLLC
{
	public class MissionStatement
	{
		private ArrayList OurCustomers = new ArrayList();
		public MissionStatement()
		{
			Customer theCustomer = new Customer();
			OurCustomers.Add(theCustomer);

			foreach (Customer c in OurCustomers)
			{
				CustomSoftware cs = new CustomSoftware(Inovation.ALot);
				cs.HighQuality = true;
				cs.theCustomer = c;

				Thread thread = new Thread(new ThreadStart(cs.MakeSoftware));
			}

			BuildAnOS();
		}
		public void BuildAnOS() { }
	}

	public enum Inovation { None = 0, ALittle = 1, ALot = 10 }
	public class CustomSoftware
	{
		private Customer mCustomer = null;
		public CustomSoftware(Inovation i) { }
		public bool HighQuality { set { } }
		public Customer theCustomer { set { mCustomer = value; } }
		public void MakeSoftware() { while (true) { mCustomer.Provide(this); mCustomer.Business.Productivity++; } }
	}

	public class Customer
	{
		private business mCurrentBusiness = new business();
		public bool NeedsSoftware() { return
            true; }
		public void Provide(CustomSoftware softwareToProvide) { }
		internal business Business { get { return mCurrentBusiness; } }
	}

	internal class business
	{
		private int mProductivity = 1;
		public int Productivity
		{
			get { return mProductivity; }
			set { mProductivity = value; }
		}
	}
}