Esempio n. 1
0
        //
        // UPDATE
        //
        public bool updateModule(ModulesEntity module)
        {
            using (var context = new MADERA_V1Entities())
            {
                MDR_Modules addModule = (from m in context.MDR_Modules
                                         where m.Mod_Index == module.Mod_Index
                                         select m).SingleOrDefault();

                addModule.Mod_Actif = module.Mod_Actif;
                addModule.Mod_Date  = module.Mod_Date;
                addModule.Mod_Nom   = module.Mod_Nom;
                addModule.Mod_Prix  = module.Mod_Prix;
                addModule.Mod_Index = module.Mod_Index;

                try
                {
                    context.SaveChanges();
                    return(true);
                }
                catch (Exception e)
                {
                    return(false);
                }
            }
        }
Esempio n. 2
0
        //
        // DELETE
        //
        public bool disabledModule(int IdModule)
        {
            using (var context = new MADERA_V1Entities())
            {
                MDR_Modules addModule = (from m in context.MDR_Modules
                                         where m.Mod_Index == IdModule
                                         select m).SingleOrDefault();

                addModule.Mod_Actif = 0;

                try
                {
                    context.SaveChanges();
                    return(true);
                }
                catch (Exception e)
                {
                    return(false);
                }
            }
        }
Esempio n. 3
0
        //
        // CREATE
        //
        public bool createModule(ModulesEntity module)
        {
            using (var context = new MADERA_V1Entities())
            {
                MDR_Modules addModule = new MDR_Modules();

                addModule.Mod_Actif = 1;
                addModule.Mod_Date  = module.Mod_Date;
                addModule.Mod_Nom   = module.Mod_Nom;
                addModule.Mod_Prix  = module.Mod_Prix;

                try
                {
                    context.MDR_Modules.Add(addModule);
                    context.SaveChanges();
                    return(true);
                }
                catch (Exception e)
                {
                    return(false);
                }
            }
        }