Mission Statement
To provide high quality
custom software that inovates for our
customers and promotes
their overall business.
using System;
using System.Collections;
using System.Threading;
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; }
}
}
}
What makes us “A Bit Above”
We are “A Bit Above” because of our company mentality. You are more than just a company we write programs for or help solve a problem. To us you are a client and we want to see your business prosper. We look into your business process and will question how you do things, in efforts to make them better. We respect your time because time is any company’s most valuable asset, and we strive to deliver projects on time and with as little delay as possible.
In short we are “A Bit Above” because we care about your success.