static public void Delete(System.Int32 empID, System.Int32 terrID, esSqlAccessType sqlAccessType)
        {
            var obj = new EmployeeTerritory();

            obj.EmpID  = empID;
            obj.TerrID = terrID;
            obj.AcceptChanges();
            obj.MarkAsDeleted();
            obj.Save(sqlAccessType);
        }
 public EmployeeTerritoryProxyStub(EmployeeTerritory obj, bool dirtyColumnsOnly)
 {
     theEntity             = this.entity = obj;
     this.dirtyColumnsOnly = dirtyColumnsOnly;
 }
 public EmployeeTerritoryProxyStub(EmployeeTerritory obj)
 {
     theEntity = this.entity = obj;
 }