public void Modify(string lineid, string name, int id = 0) { LineEntity entity = new LineEntity(); entity.ID = id; entity.LineID = lineid.ToInt(0); entity.ReceiverName = name; entity.Address = ""; if (entity != null) { entity.OperatorID = CurrentUser.UserID.ToString().ToInt(0); } LineService.ModifyLine(entity); }