protected void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (Context != null)
         {
             Context.Dispose();
             Context = null;
         }
     }
 }
 public RepositoryBase()
 {
     _db = new EntityContext();
 }