Tests.EmployeeRepositoryChain.Upsert C# (CSharp) Method

Upsert() public method

public Upsert ( Employee employee ) : int
employee Employee
return int
        public int Upsert(Employee employee)
        {
            return m_DataSource.Upsert(TableName, employee).ToInt32().Execute();
        }
    }