Example #1
0
        public virtual bool Load(bool force = false)
        {
            if (!_loaded || force)
            {
                _loaded = CouchbaseRepository.Load(this);
            }

            return(_loaded);
        }
Example #2
0
 public bool Delete()
 {
     return(CouchbaseRepository.Delete(this));
 }
Example #3
0
 public bool Save()
 {
     return(CouchbaseRepository.Store(this));
 }