public bool DeleteApplied(int id)
        {
            try
            {
                AppliedServiceClient client = new AppliedServiceClient();

                if (client.DeleteApplied(id))
                    return true;
            }
            catch (FaultException<KaskServiceException> e)
            {
                throw new HttpException(e.Message);
            }
            return false;
        }