public override void UpdateStatus()
        {
            Discount_Master_Property objDiscountMasterPropertyNew = new Discount_Master_Property();

            objDiscountMasterPropertyNew.ID            = base.Id;
            objDiscountMasterPropertyNew.Status        = base.Status;
            objDiscountMasterPropertyNew.Is_Active     = false;
            objDiscountMasterPropertyNew.Active_Status = "0";
            objDiscountMasterPropertyNew.TableName     = objDiscountMasterProperty.TableName;
            objDiscountMasterPropertyNew.Operated_By   = objDiscountMasterProperty.Operated_By;

            //if (objTransactionMasterPropertyNew.Status != null)
            //{
            objDiscountMasterDAL = new Discount_Master_DAL(objDiscountMasterPropertyNew);
            objDiscountMasterDAL.UpdateStatus();
        }
 public Discount_Master_BLL(Discount_Master_Property objDiscount_Master_Property)
 {
     objDiscountMasterProperty = objDiscount_Master_Property;
 }