The Algorithms logoThe Algorithms
About
package factorymethod

type iDepartment interface {
	setName(name string)
	setEmployees(employees int)
	getName() string
	getEmployees() int
}

Idepartment

M