예제 #1
0
 public void Delete()
 {
     if (this.Context != null)
     {
         if (this.ObjDAL != null && this.ObjDAL.EntityKey != null)
         {
             if (this.ObjDAL.EntityState == System.Data.EntityState.Detached)
             {
                 this.Context.Context.Attach(this.ObjDAL);
                 this.Context.Context.DeleteObject(this.ObjDAL);
             }
             else
             {
                 this.Context.Context.DeleteObject(this.ObjDAL);
             }
         }
         else
         {
             Indico.DAL.Label obj = this.SetDAL(this.Context.Context);
             this.Context.Context.DeleteObject(obj);
         }
     }
     else
     {
         IndicoContext    objContext = new IndicoContext();
         Indico.DAL.Label obj        = this.SetDAL(objContext.Context);
         this.Context.Context.DeleteObject(obj);
         objContext.Context.SaveChanges();
         objContext.Dispose();
     }
 }
예제 #2
0
        internal Indico.DAL.Label SetDAL(IndicoEntities context)
        {
            this._doNotUpdateDALObject = true;

            // set the Indico.DAL.Label properties
            Indico.DAL.Label obj = new Indico.DAL.Label();

            if (this.ID > 0)
            {
                obj = context.Label.FirstOrDefault <Label>(o => o.ID == this.ID);
            }

            obj.IsSample       = this.IsSample;
            obj.LabelImagePath = this.LabelImagePath;
            obj.Name           = this.Name;


            if (_distributorLabelsWhereThisIsLabelLoaded)
            {
                BusinessObject.SynchroniseEntityList(
                    Indico.BusinessObjects.CompanyBO.ToEntityList(this.DistributorLabelsWhereThisIsLabel, context),
                    obj.DistributorLabelsWhereThisIsLabel);
            }
            if (_orderDetailsWhereThisIsLabelLoaded)
            {
                BusinessObject.SynchroniseEntityList(
                    Indico.BusinessObjects.OrderDetailBO.ToEntityList(this.OrderDetailsWhereThisIsLabel, context),
                    obj.OrderDetailsWhereThisIsLabel);
            }

            this._doNotUpdateDALObject = false;

            return(obj);
        }
예제 #3
0
 public void Add()
 {
     if (this.Context != null)
     {
         this.Context.Context.AddToLabel(this.ObjDAL);
     }
     else
     {
         IndicoContext    objContext = new IndicoContext();
         Indico.DAL.Label obj        = this.SetDAL(objContext.Context);
         objContext.Context.AddToLabel(obj);
         objContext.SaveChanges();
         objContext.Dispose();
     }
 }
예제 #4
0
        /// <summary>
        /// Creates an instance of the LabelBO class using the supplied Indico.DAL.Label.
        /// </summary>
        /// <param name="obj">a Indico.DAL.Label whose properties will be used to initialise the LabelBO</param>
        internal LabelBO(Indico.DAL.Label obj, ref IndicoContext context)
        {
            this._doNotUpdateDALObject = true;

            this.Context = context;

            // set the properties from the Indico.DAL.Label
            this.ID = obj.ID;

            this.IsSample       = obj.IsSample;
            this.LabelImagePath = obj.LabelImagePath;
            this.Name           = obj.Name;

            this._doNotUpdateDALObject = false;
        }
예제 #5
0
        internal void SetBO(System.Data.Objects.DataClasses.EntityObject eObj)
        {
            this._doNotUpdateDALObject = true;

            // Check the received type
            if (eObj.GetType() != typeof(Indico.DAL.Label))
            {
                throw new FormatException("Received wrong parameter type...");
            }

            Indico.DAL.Label obj = (Indico.DAL.Label)eObj;

            // set the Indico.BusinessObjects.LabelBO properties
            this.ID = obj.ID;

            this.IsSample       = obj.IsSample;
            this.LabelImagePath = obj.LabelImagePath;
            this.Name           = obj.Name;


            this._doNotUpdateDALObject = false;
        }