Ejemplo n.º 1
0
    public bool CheckExistMachine(string mcNo)
    {
        bool result = false;

        try
        {
            using (MachineBLL mcBll = new MachineBLL())
            {
                result = mcBll.Assembly_CheckExistMachine(mcNo);
            }
        }
        catch (Exception ex)
        {
            result = false;
        }

        return(result);
    }