Beispiel #1
0
    private int GetDeptID(String DeptName)
    {
        int DeptID = int.MinValue;

        if (String.IsNullOrWhiteSpace(DeptName))
        {
            return(DeptID);
        }
        using (PhysicalDepartmentBusiness Business = new PhysicalDepartmentBusiness()){
            DeptID = Business.GetPhysicalDepartmentID(DeptName);
        }
        return(DeptID);
    }