Пример #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.UserStatus obj = this.SetDAL(this.Context.Context);
             this.Context.Context.DeleteObject(obj);
         }
     }
     else
     {
         IndicoContext         objContext = new IndicoContext();
         Indico.DAL.UserStatus obj        = this.SetDAL(objContext.Context);
         this.Context.Context.DeleteObject(obj);
         objContext.Context.SaveChanges();
         objContext.Dispose();
     }
 }
Пример #2
0
        internal Indico.DAL.UserStatus SetDAL(IndicoEntities context)
        {
            this._doNotUpdateDALObject = true;

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

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

            obj.Key  = this.Key;
            obj.Name = this.Name;


            if (_usersWhereThisIsStatusLoaded)
            {
                BusinessObject.SynchroniseEntityList(
                    Indico.BusinessObjects.UserBO.ToEntityList(this.UsersWhereThisIsStatus, context),
                    obj.UsersWhereThisIsStatus);
            }

            this._doNotUpdateDALObject = false;

            return(obj);
        }
Пример #3
0
        /// <summary>
        /// Creates an instance of the UserStatusBO class using the supplied Indico.DAL.UserStatus.
        /// </summary>
        /// <param name="obj">a Indico.DAL.UserStatus whose properties will be used to initialise the UserStatusBO</param>
        internal UserStatusBO(Indico.DAL.UserStatus obj, ref IndicoContext context)
        {
            this._doNotUpdateDALObject = true;

            this.Context = context;

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

            this.Key  = obj.Key;
            this.Name = obj.Name;

            this._doNotUpdateDALObject = false;
        }
Пример #4
0
 public void Add()
 {
     if (this.Context != null)
     {
         this.Context.Context.AddToUserStatus(this.ObjDAL);
     }
     else
     {
         IndicoContext         objContext = new IndicoContext();
         Indico.DAL.UserStatus obj        = this.SetDAL(objContext.Context);
         objContext.Context.AddToUserStatus(obj);
         objContext.SaveChanges();
         objContext.Dispose();
     }
 }
Пример #5
0
        internal void SetBO(System.Data.Objects.DataClasses.EntityObject eObj)
        {
            this._doNotUpdateDALObject = true;

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

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

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

            this.Key  = obj.Key;
            this.Name = obj.Name;


            this._doNotUpdateDALObject = false;
        }