public bool AddUserImage(string ID, byte[] ByteArrayImage) { try { return(UserLogic.AddUserImage(Convert.ToInt32(ID), ByteArrayImage)); } catch (Exception) { return(false); } }