csharpBaseline.CompanyModel.Company.Cut C# (CSharp) Method

Cut() public method

public Cut ( ) : void
return void
        public void Cut()
        {
            foreach (var dept in Departments)
            {
                   dept.Cut();
            }
        }

Same methods

Company::Cut ( int amount ) : void