protected override void Dispose(bool disposing) { if (disposing) { Uow.Dispose(); } base.Dispose(disposing); }
/// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); Uow.Dispose(); } base.Dispose(disposing); }
protected virtual void Dispose(bool disposing) { if (disposing) { if (Uow != null) { Uow.Dispose(); Uow = null; } } }
protected virtual void Dispose(bool disposing) { if (disposing) { if (Uow != null) { Uow.Dispose(); Uow = null; Ioc.Container.Release(this); } } }
protected override void Dispose(bool disposing) { if (_notifications != null) { _notifications.Dispose(); } if (_uow != null) { _uow.Dispose(); } }
public void Dispose() { _adRepo = null; _workerRepo = null; _ssoApplicationRepo = null; _ssoProfileRepo = null; _ssoProfileWorkerRepo = null; _appParameterRepo = null; _appTranslationRepo = null; Uow.Dispose(); Uow = null; }
public void Dispose() { _workerRepo = null; _areaRepo = null; _siteRepo = null; _budgetRepo = null; _appRepo = null; if (Uow != null) { Uow.Dispose(); Uow = null; } }
public void Dispose() { _workerRepo = null; _lbcRepo = null; _deptRepo = null; _ssoApplicationRepo = null; _ssoProfileRepo = null; if (Uow != null) { Uow.Dispose(); Uow = null; } }
public void Dispose() => Uow.Dispose();
protected virtual void RefrescarUow() { //Limpiar context. Uow.Dispose(); Uow = UowFactory.Create <ILaPazUow>(); }
protected virtual void RefrescarUow() { //Limpiar context. Uow.Dispose(); Uow = UowFactory.Create <IGestionAdministrativaUow>(); }
public void Dispose() { ClearDb(); Uow.Dispose(); }
public void Dispose() { Uow.Dispose(); }