Ejemplo n.º 1
0
 internal static bool AddNew()
 {
     using (FrmRoleEditor frm = new FrmRoleEditor())
     {
         return(frm.ShowDialog() == DialogResult.OK);
     }
 }
Ejemplo n.º 2
0
 internal static void Edit(Entities.Role role)
 {
     using (FrmRoleEditor frm = new FrmRoleEditor(role))
     {
         frm.ShowDialog();
     }
 }