public static Operacion MapOperacionesToBizEntity(OPERACION operacion) { return new Operacion { ID_OPERACION = operacion.ID_OPERACION, NOMBRE = operacion.NOMBRE, URL = operacion.URL, ID_OPERACION_PADRE = operacion.ID_OPERACION_PADRE, VISIBLE_MENU = operacion.VISIBLE_MENU }; }
//Agrego el menu public bool AgregarMenuCabecera(String NombreMenu, String Url, Boolean EsPadre, int MenuPadre) { using (AccesoDatosDataContext ctx = new AccesoDatosDataContext(ConfigurationManager.ConnectionStrings["UniandesConnectionString"].ConnectionString)) { OPERACION nueva = new OPERACION(); nueva.VISIBLE_MENU = "S"; nueva.URL = Url; if (!EsPadre) { nueva.ID_OPERACION_PADRE = MenuPadre; } nueva.NOMBRE = NombreMenu; ctx.OPERACION.InsertOnSubmit(nueva); ctx.SubmitChanges(); InsertarOperacionAlPerfil(MenuPadre, nueva.ID_OPERACION); } return true; }
partial void UpdateOPERACION(OPERACION instance);
partial void DeleteOPERACION(OPERACION instance);
partial void InsertOPERACION(OPERACION instance);