예제 #1
0
파일: UnitOfWork.cs 프로젝트: nasi7/Joole
 protected virtual void Dispose(bool disposing)
 {
     if (!this.disposed)
     {
         if (disposing)
         {
             context.Dispose();
         }
     }
     this.disposed = true;
 }