Check.cs 497 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PP_Ven_MosS.ModelBase
  7. {
  8. public partial class Applications
  9. {
  10. public bool status
  11. {
  12. get
  13. {
  14. if (Id_status_app == 1)
  15. {
  16. return true;
  17. }
  18. else
  19. {
  20. return false;
  21. }
  22. }
  23. }
  24. }
  25. }