Beispiel #1
0
    private void DisplayDepartmentRation()
    {
        decimal d = OAOfficeCommonClas.GetDepartmentRation(this.DepartmentID.ToString());

        d *= 12m;
        this.txtPersonRation.Text = d.ToString("f2");
    }
Beispiel #2
0
    private void DisplayDepartmentRation()
    {
        decimal d = OAOfficeCommonClas.GetDepartmentRation(this.DepartmentID.ToString());

        this.LblMonth.Text = d.ToString("f2");
        d *= 12m;
        this.LblRation.Text = d.ToString("f2");
        this.LbAlready.Text = OAOfficeCommonClas.GetAlready(this.DepartmentID.ToString()).ToString("f2");
    }