Esempio n. 1
0
        public AffidavitFormInspection GetAffidavitFormInspection(long affidavitNo, int type)
        {
            AffidavitFormInspection result = new AffidavitFormInspection();

            try
            {
                result = formLogic.GetAffidavitFormInspection(affidavitNo, type);
            }
            catch (Exception)
            {
                result = null;
            }
            return(result);
        }