public override void UpdateStatus()
        {
            Sales_Type_Property objSaleTypPropertyNew = new Sales_Type_Property();

            objSaleTypPropertyNew.ID          = base.Id;
            objSaleTypPropertyNew.Status      = base.Status;
            objSaleTypPropertyNew.TableName   = objSaleTypProperty.TableName;
            objSaleTypPropertyNew.Operated_By = objSaleTypProperty.Operated_By;

            objSaleTypDAL = new Sales_Type_DAL(objSaleTypPropertyNew);
            objSaleTypDAL.UpdateStatus();
        }
 public Sale_Type_BLL(Sales_Type_Property objSaleTyp_Property)
 {
     objSaleTypProperty = objSaleTyp_Property;
 }
 public Sales_Type_DAL(Sales_Type_Property ObjSalesType_Property)
 {
     ObjSalesTypeProperty = ObjSalesType_Property;
     objErrorTrace        = new ErrorTracer();
 }