36 lines
883 B
C#
36 lines
883 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace EFCDesk.Forms
|
|
{
|
|
public partial class RegistroExpirado : Form
|
|
{
|
|
public RegistroExpirado()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void RegistroExpirado_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
{
|
|
System.Diagnostics.Process.Start("mailto:soportesitar@aduanasoft.com.mx");
|
|
}
|
|
|
|
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
{
|
|
System.Diagnostics.Process.Start("mailto:bodega@aduanasoft.com.mx");
|
|
}
|
|
}
|
|
}
|