public ImportGeometryObject(int index, GeometryInformation geometry, string action, bool status)
 {
     Index = index;
     Geometry = geometry;
     Action = action;
     Status = status;
 }
Ejemplo n.º 2
0
        public GeometryX Update(GeometryX entity)
        {
            Contract.Requires(entity != null, "provided entity can not be null");
            Contract.Requires(entity.Id >= 0, "provided entity must have a permanent ID");

            Contract.Ensures(Contract.Result <GeometryX>() != null && Contract.Result <GeometryX>().Id >= 0, "No entity is persisted!");

            using (IUnitOfWork uow = this.GetUnitOfWork())
            {
                IRepository <GeometryX> repo = uow.GetRepository <GeometryX>();
                repo.Merge(entity);
                var merged = repo.Get(entity.Id);
                repo.Put(merged);
                uow.Commit();
            }
            return(entity);
        }
Ejemplo n.º 3
0
        public GeometryX Create(long plotid, string coordinate, string geometrytype, string coordinatetype, string color, string geometrytext, Plot plot, string name, string description, string referencePoint = "")
        {
            //Contract.Requires(!string.IsNullOrWhiteSpace(plotId));
            //Contract.Requires(!string.IsNullOrWhiteSpace(plotType) != null);
            //Contract.Requires(!string.IsNullOrWhiteSpace(latitude) != null);
            //Contract.Requires(!string.IsNullOrWhiteSpace(longitude) != null);
            Contract.Ensures(Contract.Result <GeometryX>() != null && Contract.Result <GeometryX>().Id >= 0);

            //PartyStatus initialStatus = new PartyStatus();
            //initialStatus.Timestamp = DateTime.UtcNow;
            //initialStatus.Description = "Created";
            //initialStatus.StatusType = statusType;

            GeometryX entity = new GeometryX()
            {
                Plot           = plot,
                PlotId         = plotid,
                GeometryText   = geometrytext,
                GeometryType   = geometrytype,
                Coordinate     = coordinate,
                CoordinateType = coordinatetype,
                Color          = color,
                Status         = 1,
                LineWidth      = 1,
                Name           = name,
                Description    = description,
                GeometryId     = 1,
                VersionNo      = 1,
                Extra          = null,
                ReferencePoint = referencePoint
            };

            //entity.History.Add(initialStatus);

            using (IUnitOfWork uow = this.GetUnitOfWork())
            {
                IRepository <GeometryX> repo = uow.GetRepository <GeometryX>();
                repo.Put(entity); // must store the status objects too
                uow.Commit();
            }
            return(entity);
        }
Ejemplo n.º 4
0
        public bool Delete(GeometryX entity)
        {
            Contract.Requires(entity != null);
            Contract.Requires(entity.Id >= 0);

            using (IUnitOfWork uow = this.GetUnitOfWork())
            {
                IRepository <GeometryX> repo = uow.GetRepository <GeometryX>();

                entity = repo.Reload(entity);


                //delete the entity
                repo.Delete(entity);

                // commit changes
                uow.Commit();
            }
            // if any problem was detected during the commit, an exception will be thrown!
            return(true);
        }