示例#1
0
        public bool UpdateScreen(Common.Models.Screen screenCommon)
        {
            bool status;

            try
            {
                status = repository.UpdateScreen(screenCommon);
            }
            catch (Exception ex)
            {
                status = false;
            }
            return(status);
        }