public override Features FeatureGetByID(int featureID)
        {
            DBCommands.PopulateParams("@FeatureID", featureID);

            return((Features)DBCommands.DataReader("p_Feature_GetByID", DBCommands.ObjectTypes.Features));
        }
        public override UserInfo UserInfoGetByUser(string userName)
        {
            DBCommands.PopulateParams("@UserName", userName);

            return((UserInfo)DBCommands.DataReader("p_UserInfo_GetByUser", DBCommands.ObjectTypes.UserInfo));
        }