public void WhenIPostInValidCustomerListWebApiGetUserCustomerListRequest(string invalidAccessToken) { string accessToken = InputGenerator.GetValue(invalidAccessToken); ResponseString = RestClientUtil.DoInvalidHttpRequest(CustomerListConfig.CustomerListWebAPI, HeaderSettings.GetMethod, accessToken, HeaderSettings.JsonMediaType, null, HttpStatusCode.Unauthorized, HeaderSettings.BearerType, HeaderSettings.JsonMediaType); }
public void WhenISetInvalidCustomerUserServiceDissociateUserUIDTo(string userUid) { customerUserServiceSupport.InvalidDissociateCustomerUserModel.UserUID = InputGenerator.GetValue(userUid); }
public void WhenISetInvalidCustomerServiceUpdateCustomerNameTo(string customerName) { customerServiceSupport.InvalidUpdateCustomerModel.CustomerName = InputGenerator.GetValue(customerName); }
public void WhenISetInvalidCustomerServiceUpdateDealerNetworkTo(string dealerNetwork) { customerServiceSupport.InvalidUpdateCustomerModel.DealerNetwork = InputGenerator.GetValue(dealerNetwork); }
public void WhenISetCustomerServiceCreateFirstNameTo(string firstName) { customerServiceSupport.CreateCustomerModel.FirstName = InputGenerator.GetValue(firstName); }
public void WhenISetInvalidCustomerServiceDeleteCustomerUIDTo(string customerUid) { customerServiceSupport.InvalidDeleteCustomerModel.CustomerUID = InputGenerator.GetValue(customerUid); }
public void WhenISetInvalidCustomerServiceCreatePrimaryContactEmailTo(string primaryContactEmail) { customerServiceSupport.InvalidCreateCustomerModel.PrimaryContactEmail = InputGenerator.GetValue(primaryContactEmail); }
public void WhenISetInvalidCustomerServiceDissociateAssetUIDTo(string assetUid) { customerAssetServiceSupport.InvalidDissociateCustomerAssetModel.AssetUID = InputGenerator.GetValue(assetUid); }
public void WhenISetInvalidCustomerServiceCreateCustomerTypeTo(string customerType) { customerServiceSupport.InvalidCreateCustomerModel.CustomerType = InputGenerator.GetValue(customerType); }
public void WhenISetCustomerServiceCreateBSSIDTo(string bssId) { customerServiceSupport.CreateCustomerModel.BSSID = InputGenerator.GetValue(bssId); }
public void WhenISetCustomerServiceUpdateLastNameTo(string lastName) { customerServiceSupport.UpdateCustomerModel.LastName = InputGenerator.GetValue(lastName); }
public void WhenISetCustomerServiceUpdateDealerAccountCodeTo(string dealerAccountCode) { customerServiceSupport.UpdateCustomerModel.DealerAccountCode = InputGenerator.GetValue(dealerAccountCode); }
public void WhenISetCustomerServiceUpdateNetworkCustomerCodeTo(string networkCustomerCode) { customerServiceSupport.UpdateCustomerModel.NetworkCustomerCode = InputGenerator.GetValue(networkCustomerCode); }
public void WhenISetInvalidCustomerAssetServiceAssociateRelationTypeTo(string relationType) { customerAssetServiceSupport.InvalidAssociateCustomerAssetModel.RelationType = InputGenerator.GetValue(relationType); }
public void WhenISetInvalidCustomerServiceUpdateBSSIDTo(string bssId) { customerServiceSupport.InvalidUpdateCustomerModel.BSSID = InputGenerator.GetValue(bssId); }
public void WhenISetInvalidCustomerAssetServiceAssociateCustomerUIDTo(string customerUid) { customerAssetServiceSupport.InvalidAssociateCustomerAssetModel.CustomerUID = InputGenerator.GetValue(customerUid); }
public void WhenISetInvalidCustomerServiceUpdateActionUTCTo(string actionUtc) { customerServiceSupport.InvalidUpdateCustomerModel.ActionUTC = InputGenerator.GetValue(actionUtc); }
public void WhenISetInvalidCustomerServiceDissociateActionUTCTo(string actionUtc) { customerAssetServiceSupport.InvalidDissociateCustomerAssetModel.ActionUTC = InputGenerator.GetValue(actionUtc); }
public void WhenISetInvalidCustomerServiceUpdateNetworkDealerCodeTo(string networkDealercode) { customerServiceSupport.InvalidUpdateCustomerModel.NetworkDealerCode = InputGenerator.GetValue(networkDealercode); }