Example #1
0
    public int Delete_leave(Leave leave)
    {
        LeaveDAL ADAL = new LeaveDAL();

        try
        {
            return(ADAL.Delete_Leave(leave));
        }
        catch (Exception)
        {
            throw;
        }
        finally
        {
            leave = null;
        }
    }