public FetchConfigurationForCustomCommand(IntegrationAction action, IntegrationType type, Frequency frequency, string customDay)
 {
     Type = type;
     Action = action;
     Frequency = frequency;
     CustomDay = customDay;
 }
 public FetchConfigurationForClientCommand(IntegrationAction action, IntegrationType type, Frequency frequency, Guid contractId, Guid packageId)
 {
     Type = type;
     Action = action;
     Frequency = frequency;
     ContractId = contractId;
     PackageId = packageId;
 }
 public FetchConfigurationCommand(IntegrationAction action, IntegrationType type, Frequency frequency)
 {
     Type = type;
     Action = action;
     Frequency = frequency;
 }