ObjectModel.EmployeeCollection.this C# (CSharp) Method

this() public method

public this ( System.Guid id ) : Employee
id System.Guid
return Employee
		public Employee this[Guid id]
		{
			get
			{
				return GetByID(id) as Employee;
			}
		}

Same methods

EmployeeCollection::this ( int index ) : Employee