/// <summary> /// Factory is our data manipulation abstract class /// it can not be instantiate, it has to be inherited /// and its methods implemented /// </summary>
public abstract class Factory {
public abstract object Create();
public abstract bool Update(object oObject);
public abstract bool Delete(object oObject);
}
|