Esempio n. 1
0
 public UpdateSla(string connectionString, string slaId, bool isActive, bool isDefault, string businessHoursId)
 {
     SlaId           = slaId;
     IsActive        = isActive;
     IsDefault       = isDefault;
     BusinessHoursId = businessHoursId;
     XrmCommand      = new XrmCommand(connectionString);
 }
Esempio n. 2
0
 public GetPublishedRules(string connectionString, string workingDirectory)
 {
     WorkingDirectory = workingDirectory;
     XrmCommand       = new XrmCommand(connectionString);
 }
 public DeactivateForms(string connectionString, string formIds)
 {
     FormIds    = formIds;
     XrmCommand = new XrmCommand(connectionString);
 }
 public AssignWorkflowsToUser(IXrmCommand xrmCommand, string userId, IWorkflowService service = null)
 {
     XrmCommand      = xrmCommand;
     UserId          = GuidParser.TryParseIdOrThrow(userId);
     WorkflowService = service;
 }