Exemplo n.º 1
0
 public bool ChangeSetupStatus(string companyid, bool status)
 {
     try
     {
         ApplicationService.profile profile = appclient.Getprofile(companyid);
         appclient.ChangeSetup(profile.profileid, status);
         return(true);
     }
     catch
     {
         return(false);
     }
 }
Exemplo n.º 2
0
 public bool GetSetupStatus(string companyid)
 {
     ApplicationService.profile profile = appclient.Getprofile(companyid);
     return(profile.setup);
 }