1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PP_Ven_MosS.ModelBase
- {
- public partial class Applications
- {
- public bool status
- {
- get
- {
- if (Id_status_app == 1)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- }
- }
- }
|