Exemplo n.º 1
0
 private bool FilterCustomers(Customer entity)
 {
     return (entity.FoundryID == this.ID);
 }
Exemplo n.º 2
0
 private void AttachCustomers(Customer entity)
 {
     entity.Foundry = this;
 }
Exemplo n.º 3
0
 private void DetachCustomers(Customer entity)
 {
     entity.Foundry = null;
 }
Exemplo n.º 4
0
 private bool FilterCustomer(Customer entity)
 {
     return (entity.ID == this.CustomerID);
 }