コード例 #1
0
        public bool AddAffidavitFormInspection(AffidavitFormInspection model, int type)
        {
            bool result = false;

            try
            {
                result = formLogic.AddAffidavitFormInspection(model, type);
            }
            catch (Exception)
            {
                result = false;;
            }
            return(result);
        }