diff --git a/src/GlobalPayments.Api/Builders/PayFacBuilder.cs b/src/GlobalPayments.Api/Builders/PayFacBuilder.cs index b704851b..105549ab 100644 --- a/src/GlobalPayments.Api/Builders/PayFacBuilder.cs +++ b/src/GlobalPayments.Api/Builders/PayFacBuilder.cs @@ -1,9 +1,6 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Entities.PayFac; using GlobalPayments.Api.PaymentMethods; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Builders { diff --git a/src/GlobalPayments.Api/Builders/ResubmitBuilder.cs b/src/GlobalPayments.Api/Builders/ResubmitBuilder.cs index 67c92a15..d2325517 100644 --- a/src/GlobalPayments.Api/Builders/ResubmitBuilder.cs +++ b/src/GlobalPayments.Api/Builders/ResubmitBuilder.cs @@ -1,6 +1,5 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Gateways; -using System; namespace GlobalPayments.Api.Builders { public class ResubmitBuilder : TransactionBuilder { diff --git a/src/GlobalPayments.Api/Entities/AlternativePaymentResponse.cs b/src/GlobalPayments.Api/Entities/AlternativePaymentResponse.cs index 88e0e047..c8508891 100644 --- a/src/GlobalPayments.Api/Entities/AlternativePaymentResponse.cs +++ b/src/GlobalPayments.Api/Entities/AlternativePaymentResponse.cs @@ -1,5 +1,3 @@ -using GlobalPayments.Api.Utils; - namespace GlobalPayments.Api.Entities { /// /// Alternative payment response data diff --git a/src/GlobalPayments.Api/Entities/Billing/AuthorizationRecord.cs b/src/GlobalPayments.Api/Entities/Billing/AuthorizationRecord.cs index 4ad78f94..8ee2b40e 100644 --- a/src/GlobalPayments.Api/Entities/Billing/AuthorizationRecord.cs +++ b/src/GlobalPayments.Api/Entities/Billing/AuthorizationRecord.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.Billing { +namespace GlobalPayments.Api.Entities.Billing { public class AuthorizationRecord { public string AddToBatchReferenceNumber { get; set; } public decimal? Amount { get; set; } diff --git a/src/GlobalPayments.Api/Entities/Billing/BillingResponse.cs b/src/GlobalPayments.Api/Entities/Billing/BillingResponse.cs index 6fe69ad1..30f10319 100644 --- a/src/GlobalPayments.Api/Entities/Billing/BillingResponse.cs +++ b/src/GlobalPayments.Api/Entities/Billing/BillingResponse.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.Billing { +namespace GlobalPayments.Api.Entities.Billing { public class BillingResponse { /// /// Indicates if the action was succesful diff --git a/src/GlobalPayments.Api/Entities/Billing/ConvenienceFeeResponse.cs b/src/GlobalPayments.Api/Entities/Billing/ConvenienceFeeResponse.cs index 5d7d9fc6..66beb06d 100644 --- a/src/GlobalPayments.Api/Entities/Billing/ConvenienceFeeResponse.cs +++ b/src/GlobalPayments.Api/Entities/Billing/ConvenienceFeeResponse.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.Billing { +namespace GlobalPayments.Api.Entities.Billing { public class ConvenienceFeeResponse : BillingResponse { public decimal ConvenienceFee { get; set; } } diff --git a/src/GlobalPayments.Api/Entities/Billing/Credentials.cs b/src/GlobalPayments.Api/Entities/Billing/Credentials.cs index b5682d13..2abee5e4 100644 --- a/src/GlobalPayments.Api/Entities/Billing/Credentials.cs +++ b/src/GlobalPayments.Api/Entities/Billing/Credentials.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.Billing { +namespace GlobalPayments.Api.Entities.Billing { internal class Credentials { public string ApiKey { get; set; } public string MerchantName { get; set; } diff --git a/src/GlobalPayments.Api/Entities/Billing/LoadHostedPaymentResponse.cs b/src/GlobalPayments.Api/Entities/Billing/LoadHostedPaymentResponse.cs index 7540baf5..187b305e 100644 --- a/src/GlobalPayments.Api/Entities/Billing/LoadHostedPaymentResponse.cs +++ b/src/GlobalPayments.Api/Entities/Billing/LoadHostedPaymentResponse.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.Billing { +namespace GlobalPayments.Api.Entities.Billing { public class LoadHostedPaymentResponse : BillingResponse { /// /// Unique identifier for the hosted payment page diff --git a/src/GlobalPayments.Api/Entities/Billing/LoadSecurePayResponse.cs b/src/GlobalPayments.Api/Entities/Billing/LoadSecurePayResponse.cs index adcc7656..cc4ab8ce 100644 --- a/src/GlobalPayments.Api/Entities/Billing/LoadSecurePayResponse.cs +++ b/src/GlobalPayments.Api/Entities/Billing/LoadSecurePayResponse.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.Billing { +namespace GlobalPayments.Api.Entities.Billing { public class LoadSecurePayResponse: BillingResponse { public string PaymentIdentifier { get; set; } } diff --git a/src/GlobalPayments.Api/Entities/Billing/TokenData.cs b/src/GlobalPayments.Api/Entities/Billing/TokenData.cs index f1187f3b..e9816cf9 100644 --- a/src/GlobalPayments.Api/Entities/Billing/TokenData.cs +++ b/src/GlobalPayments.Api/Entities/Billing/TokenData.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Entities.Billing { public class TokenData { diff --git a/src/GlobalPayments.Api/Entities/Billing/TokenResponse.cs b/src/GlobalPayments.Api/Entities/Billing/TokenResponse.cs index df06d779..21bade76 100644 --- a/src/GlobalPayments.Api/Entities/Billing/TokenResponse.cs +++ b/src/GlobalPayments.Api/Entities/Billing/TokenResponse.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.Billing { +namespace GlobalPayments.Api.Entities.Billing { public class TokenResponse: BillingResponse { public string Token { get; set; } } diff --git a/src/GlobalPayments.Api/Entities/BrowserData.cs b/src/GlobalPayments.Api/Entities/BrowserData.cs index 3e527895..2b89aa5c 100644 --- a/src/GlobalPayments.Api/Entities/BrowserData.cs +++ b/src/GlobalPayments.Api/Entities/BrowserData.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities { +namespace GlobalPayments.Api.Entities { public class BrowserData { public string AcceptHeader { get; set; } public ColorDepth ColorDepth { get; set; } diff --git a/src/GlobalPayments.Api/Entities/DccRateData.cs b/src/GlobalPayments.Api/Entities/DccRateData.cs index 477537e1..1b05f33a 100644 --- a/src/GlobalPayments.Api/Entities/DccRateData.cs +++ b/src/GlobalPayments.Api/Entities/DccRateData.cs @@ -1,5 +1,4 @@ -using GlobalPayments.Api.Entities; -using System; +using System; namespace GlobalPayments.Api.Entities { public class DccRateData { diff --git a/src/GlobalPayments.Api/Entities/DocumentUploadData.cs b/src/GlobalPayments.Api/Entities/DocumentUploadData.cs index a4a8a6d4..14ec2cbb 100644 --- a/src/GlobalPayments.Api/Entities/DocumentUploadData.cs +++ b/src/GlobalPayments.Api/Entities/DocumentUploadData.cs @@ -1,7 +1,5 @@ using System; -using System.Collections.Generic; using System.Collections.ObjectModel; -using System.Text; namespace GlobalPayments.Api.Entities { diff --git a/src/GlobalPayments.Api/Entities/Enums/ProPayAccountStatus.cs b/src/GlobalPayments.Api/Entities/Enums/ProPayAccountStatus.cs index 2a236b6d..a73a6b40 100644 --- a/src/GlobalPayments.Api/Entities/Enums/ProPayAccountStatus.cs +++ b/src/GlobalPayments.Api/Entities/Enums/ProPayAccountStatus.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.Enums +namespace GlobalPayments.Api.Entities.Enums { public enum ProPayAccountStatus { ReadyToProcess, diff --git a/src/GlobalPayments.Api/Entities/Enums/Risk.cs b/src/GlobalPayments.Api/Entities/Enums/Risk.cs index a16c367d..b4cfcb8b 100644 --- a/src/GlobalPayments.Api/Entities/Enums/Risk.cs +++ b/src/GlobalPayments.Api/Entities/Enums/Risk.cs @@ -1,6 +1,4 @@ -using System; - -namespace GlobalPayments.Api.Entities { +namespace GlobalPayments.Api.Entities { public enum Risk { High, Low diff --git a/src/GlobalPayments.Api/Entities/FraudResponse.cs b/src/GlobalPayments.Api/Entities/FraudResponse.cs index 87ca036c..8d015ac8 100644 --- a/src/GlobalPayments.Api/Entities/FraudResponse.cs +++ b/src/GlobalPayments.Api/Entities/FraudResponse.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Entities { diff --git a/src/GlobalPayments.Api/Entities/FraudRule.cs b/src/GlobalPayments.Api/Entities/FraudRule.cs index b898243d..438fdf30 100644 --- a/src/GlobalPayments.Api/Entities/FraudRule.cs +++ b/src/GlobalPayments.Api/Entities/FraudRule.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities +namespace GlobalPayments.Api.Entities { public class FraudRule { diff --git a/src/GlobalPayments.Api/Entities/FraudRuleCollection.cs b/src/GlobalPayments.Api/Entities/FraudRuleCollection.cs index 019dc0e6..37ee0fe1 100644 --- a/src/GlobalPayments.Api/Entities/FraudRuleCollection.cs +++ b/src/GlobalPayments.Api/Entities/FraudRuleCollection.cs @@ -1,6 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; +using System.Collections.Generic; namespace GlobalPayments.Api.Entities { diff --git a/src/GlobalPayments.Api/Entities/GpApi/AccessTokenInfo.cs b/src/GlobalPayments.Api/Entities/GpApi/AccessTokenInfo.cs index 71c316fa..ab556f55 100644 --- a/src/GlobalPayments.Api/Entities/GpApi/AccessTokenInfo.cs +++ b/src/GlobalPayments.Api/Entities/GpApi/AccessTokenInfo.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities { +namespace GlobalPayments.Api.Entities { public class AccessTokenInfo { public string Token { get; set; } public string DataAccountName { get; set; } diff --git a/src/GlobalPayments.Api/Entities/MessageExtension.cs b/src/GlobalPayments.Api/Entities/MessageExtension.cs index 3c6ffe1f..f06bf9cf 100644 --- a/src/GlobalPayments.Api/Entities/MessageExtension.cs +++ b/src/GlobalPayments.Api/Entities/MessageExtension.cs @@ -1,9 +1,3 @@ -using System; -using System.Linq; -using System.Collections.Generic; -using System.Text; -using System.Collections; - namespace GlobalPayments.Api.Entities { public class MessageExtension { diff --git a/src/GlobalPayments.Api/Entities/PayFac/AccountPermissions.cs b/src/GlobalPayments.Api/Entities/PayFac/AccountPermissions.cs index 6e5af50f..490f8142 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/AccountPermissions.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/AccountPermissions.cs @@ -1,7 +1,4 @@ using GlobalPayments.Api.Entities.Enums; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Entities.PayFac { diff --git a/src/GlobalPayments.Api/Entities/PayFac/BankAccountData.cs b/src/GlobalPayments.Api/Entities/PayFac/BankAccountData.cs index cd6bca7b..85237070 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/BankAccountData.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/BankAccountData.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.PayFac +namespace GlobalPayments.Api.Entities.PayFac { public class BankAccountData { /// diff --git a/src/GlobalPayments.Api/Entities/PayFac/BankAccountOwnershipData.cs b/src/GlobalPayments.Api/Entities/PayFac/BankAccountOwnershipData.cs index f5a72cd0..2da9ee48 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/BankAccountOwnershipData.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/BankAccountOwnershipData.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.PayFac +namespace GlobalPayments.Api.Entities.PayFac { public class BankAccountOwnershipData { public string FirstName { get; set; } diff --git a/src/GlobalPayments.Api/Entities/PayFac/BeneficialOwnerData.cs b/src/GlobalPayments.Api/Entities/PayFac/BeneficialOwnerData.cs index 7cf2daf3..1d651ab1 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/BeneficialOwnerData.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/BeneficialOwnerData.cs @@ -1,6 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; +using System.Collections.Generic; namespace GlobalPayments.Api.Entities.PayFac { diff --git a/src/GlobalPayments.Api/Entities/PayFac/BusinessData.cs b/src/GlobalPayments.Api/Entities/PayFac/BusinessData.cs index 56c2200d..078d8cf2 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/BusinessData.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/BusinessData.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.PayFac +namespace GlobalPayments.Api.Entities.PayFac { public class BusinessData { /// diff --git a/src/GlobalPayments.Api/Entities/PayFac/FlashFundsPaymentCardData.cs b/src/GlobalPayments.Api/Entities/PayFac/FlashFundsPaymentCardData.cs index 955f5107..b5d37700 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/FlashFundsPaymentCardData.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/FlashFundsPaymentCardData.cs @@ -1,7 +1,4 @@ using GlobalPayments.Api.PaymentMethods; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Entities.PayFac { diff --git a/src/GlobalPayments.Api/Entities/PayFac/GrossBillingInformation.cs b/src/GlobalPayments.Api/Entities/PayFac/GrossBillingInformation.cs index 9fdaf4c3..e0e4adc3 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/GrossBillingInformation.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/GrossBillingInformation.cs @@ -1,7 +1,4 @@ using GlobalPayments.Api.PaymentMethods; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Entities.PayFac { diff --git a/src/GlobalPayments.Api/Entities/PayFac/OwnersData.cs b/src/GlobalPayments.Api/Entities/PayFac/OwnersData.cs index 75aa7e68..49364cc4 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/OwnersData.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/OwnersData.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.PayFac +namespace GlobalPayments.Api.Entities.PayFac { public class OwnersData { /// diff --git a/src/GlobalPayments.Api/Entities/PayFac/PayFacResponseData.cs b/src/GlobalPayments.Api/Entities/PayFac/PayFacResponseData.cs index 8d73f47c..c910286f 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/PayFacResponseData.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/PayFacResponseData.cs @@ -1,6 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; +using System.Collections.Generic; namespace GlobalPayments.Api.Entities.PayFac { diff --git a/src/GlobalPayments.Api/Entities/PayFac/RenewAccountData.cs b/src/GlobalPayments.Api/Entities/PayFac/RenewAccountData.cs index a8defc73..cd334a41 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/RenewAccountData.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/RenewAccountData.cs @@ -1,7 +1,4 @@ using GlobalPayments.Api.PaymentMethods; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Entities.PayFac { diff --git a/src/GlobalPayments.Api/Entities/PayFac/SignificantOwnerData.cs b/src/GlobalPayments.Api/Entities/PayFac/SignificantOwnerData.cs index 738ae37f..c9f47430 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/SignificantOwnerData.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/SignificantOwnerData.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.PayFac +namespace GlobalPayments.Api.Entities.PayFac { public class SignificantOwnerData { /// diff --git a/src/GlobalPayments.Api/Entities/PayFac/ThreatRiskData.cs b/src/GlobalPayments.Api/Entities/PayFac/ThreatRiskData.cs index 872820b2..3ea77817 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/ThreatRiskData.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/ThreatRiskData.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.PayFac +namespace GlobalPayments.Api.Entities.PayFac { public class ThreatRiskData { /// diff --git a/src/GlobalPayments.Api/Entities/PayFac/UserPersonalData.cs b/src/GlobalPayments.Api/Entities/PayFac/UserPersonalData.cs index d4e92afe..0926e75e 100644 --- a/src/GlobalPayments.Api/Entities/PayFac/UserPersonalData.cs +++ b/src/GlobalPayments.Api/Entities/PayFac/UserPersonalData.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities.PayFac +namespace GlobalPayments.Api.Entities.PayFac { public class UserPersonalData { /// diff --git a/src/GlobalPayments.Api/Entities/Payroll/Entities/SessionInfo.cs b/src/GlobalPayments.Api/Entities/Payroll/Entities/SessionInfo.cs index dac11c20..69bf8ab8 100644 --- a/src/GlobalPayments.Api/Entities/Payroll/Entities/SessionInfo.cs +++ b/src/GlobalPayments.Api/Entities/Payroll/Entities/SessionInfo.cs @@ -1,5 +1,4 @@ -using System; -using GlobalPayments.Api.Utils; +using GlobalPayments.Api.Utils; namespace GlobalPayments.Api.Entities.Payroll { internal class SessionInfo : PayrollEntity { diff --git a/src/GlobalPayments.Api/Entities/Payroll/PayrollRequest.cs b/src/GlobalPayments.Api/Entities/Payroll/PayrollRequest.cs index aa0c9564..b3e968f1 100644 --- a/src/GlobalPayments.Api/Entities/Payroll/PayrollRequest.cs +++ b/src/GlobalPayments.Api/Entities/Payroll/PayrollRequest.cs @@ -1,6 +1,4 @@ -using System.Collections.Generic; - -namespace GlobalPayments.Api.Entities.Payroll { +namespace GlobalPayments.Api.Entities.Payroll { internal class PayrollRequest { public string Endpoint { get; set; } public string RequestBody { get; set; } diff --git a/src/GlobalPayments.Api/Entities/PhoneNumber.cs b/src/GlobalPayments.Api/Entities/PhoneNumber.cs index 2854c793..94efc206 100644 --- a/src/GlobalPayments.Api/Entities/PhoneNumber.cs +++ b/src/GlobalPayments.Api/Entities/PhoneNumber.cs @@ -1,6 +1,4 @@ -using GlobalPayments.Api.Utils; -using System; -using System.Text; +using System.Text; namespace GlobalPayments.Api.Entities { public class PhoneNumber { diff --git a/src/GlobalPayments.Api/Entities/Reporting/ActionSummary.cs b/src/GlobalPayments.Api/Entities/Reporting/ActionSummary.cs index cf315966..464a0aca 100644 --- a/src/GlobalPayments.Api/Entities/Reporting/ActionSummary.cs +++ b/src/GlobalPayments.Api/Entities/Reporting/ActionSummary.cs @@ -1,6 +1,4 @@ using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Entities { public class ActionSummary { diff --git a/src/GlobalPayments.Api/Entities/Reporting/StoredPaymentMethodSummary.cs b/src/GlobalPayments.Api/Entities/Reporting/StoredPaymentMethodSummary.cs index 08413837..66f87971 100644 --- a/src/GlobalPayments.Api/Entities/Reporting/StoredPaymentMethodSummary.cs +++ b/src/GlobalPayments.Api/Entities/Reporting/StoredPaymentMethodSummary.cs @@ -1,6 +1,4 @@ using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Entities { public class StoredPaymentMethodSummary { diff --git a/src/GlobalPayments.Api/Entities/SSORequestData.cs b/src/GlobalPayments.Api/Entities/SSORequestData.cs index b5c1d239..2dcdaee2 100644 --- a/src/GlobalPayments.Api/Entities/SSORequestData.cs +++ b/src/GlobalPayments.Api/Entities/SSORequestData.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Entities +namespace GlobalPayments.Api.Entities { public class SSORequestData { /// diff --git a/src/GlobalPayments.Api/Entities/Schedule.cs b/src/GlobalPayments.Api/Entities/Schedule.cs index f878c174..9d10ac82 100644 --- a/src/GlobalPayments.Api/Entities/Schedule.cs +++ b/src/GlobalPayments.Api/Entities/Schedule.cs @@ -1,5 +1,4 @@ using System; -using GlobalPayments.Api.Entities; namespace GlobalPayments.Api.Entities { /// diff --git a/src/GlobalPayments.Api/Entities/StoredCredential.cs b/src/GlobalPayments.Api/Entities/StoredCredential.cs index 84f09aba..59541b9f 100644 --- a/src/GlobalPayments.Api/Entities/StoredCredential.cs +++ b/src/GlobalPayments.Api/Entities/StoredCredential.cs @@ -1,6 +1,4 @@ -using System; - -namespace GlobalPayments.Api.Entities { +namespace GlobalPayments.Api.Entities { public class StoredCredential { public StoredCredentialType Type { get; set; } public StoredCredentialInitiator Initiator { get; set; } diff --git a/src/GlobalPayments.Api/Entities/TableService/ShiftAssignments.cs b/src/GlobalPayments.Api/Entities/TableService/ShiftAssignments.cs index 921e9b2b..2213d6ba 100644 --- a/src/GlobalPayments.Api/Entities/TableService/ShiftAssignments.cs +++ b/src/GlobalPayments.Api/Entities/TableService/ShiftAssignments.cs @@ -1,5 +1,4 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.Text; namespace GlobalPayments.Api.Entities.TableService { diff --git a/src/GlobalPayments.Api/Gateways/BillPay/ReportRequest.cs b/src/GlobalPayments.Api/Gateways/BillPay/ReportRequest.cs index 9a12825f..905f82ca 100644 --- a/src/GlobalPayments.Api/Gateways/BillPay/ReportRequest.cs +++ b/src/GlobalPayments.Api/Gateways/BillPay/ReportRequest.cs @@ -1,12 +1,8 @@ using GlobalPayments.Api.Builders; -using GlobalPayments.Api.Entities; using GlobalPayments.Api.Entities.Billing; using GlobalPayments.Api.Logging; using GlobalPayments.Api.Utils; -using System; -using System.Collections.Generic; using System.Net; -using System.Text; namespace GlobalPayments.Api.Gateways.BillPay { diff --git a/src/GlobalPayments.Api/Gateways/BillPay/Requests/GetAchTokenRequest.cs b/src/GlobalPayments.Api/Gateways/BillPay/Requests/GetAchTokenRequest.cs index 2bebc1e7..42188dfa 100644 --- a/src/GlobalPayments.Api/Gateways/BillPay/Requests/GetAchTokenRequest.cs +++ b/src/GlobalPayments.Api/Gateways/BillPay/Requests/GetAchTokenRequest.cs @@ -1,5 +1,4 @@ using GlobalPayments.Api.Builders; -using GlobalPayments.Api.Entities; using GlobalPayments.Api.Entities.Billing; using GlobalPayments.Api.PaymentMethods; using GlobalPayments.Api.Utils; diff --git a/src/GlobalPayments.Api/Gateways/BillPay/Requests/GetTransactionByOrderIDRequest.cs b/src/GlobalPayments.Api/Gateways/BillPay/Requests/GetTransactionByOrderIDRequest.cs index 416c5930..a560e07d 100644 --- a/src/GlobalPayments.Api/Gateways/BillPay/Requests/GetTransactionByOrderIDRequest.cs +++ b/src/GlobalPayments.Api/Gateways/BillPay/Requests/GetTransactionByOrderIDRequest.cs @@ -1,7 +1,6 @@ using GlobalPayments.Api.Builders; using GlobalPayments.Api.Entities; using GlobalPayments.Api.Entities.Billing; -using GlobalPayments.Api.PaymentMethods; using GlobalPayments.Api.Utils; namespace GlobalPayments.Api.Gateways.BillPay { diff --git a/src/GlobalPayments.Api/Gateways/BillPay/Responses/BillingRequestResponse.cs b/src/GlobalPayments.Api/Gateways/BillPay/Responses/BillingRequestResponse.cs index da9aafbb..5cce4024 100644 --- a/src/GlobalPayments.Api/Gateways/BillPay/Responses/BillingRequestResponse.cs +++ b/src/GlobalPayments.Api/Gateways/BillPay/Responses/BillingRequestResponse.cs @@ -1,5 +1,4 @@ using GlobalPayments.Api.Entities.Billing; -using GlobalPayments.Api.Utils; namespace GlobalPayments.Api.Gateways.BillPay { internal sealed class BillingRequestResponse : BillPayResponseBase { diff --git a/src/GlobalPayments.Api/Gateways/BillPay/Responses/PreloadBillsResponse.cs b/src/GlobalPayments.Api/Gateways/BillPay/Responses/PreloadBillsResponse.cs index 1e7ef57f..2a10c786 100644 --- a/src/GlobalPayments.Api/Gateways/BillPay/Responses/PreloadBillsResponse.cs +++ b/src/GlobalPayments.Api/Gateways/BillPay/Responses/PreloadBillsResponse.cs @@ -1,7 +1,4 @@ using GlobalPayments.Api.Entities.Billing; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Gateways.BillPay { internal sealed class PreloadBillsResponse : BillPayResponseBase { diff --git a/src/GlobalPayments.Api/Gateways/BillPay/Responses/TokenInformationRequestResponse.cs b/src/GlobalPayments.Api/Gateways/BillPay/Responses/TokenInformationRequestResponse.cs index 2e63eb5e..809b4b3f 100644 --- a/src/GlobalPayments.Api/Gateways/BillPay/Responses/TokenInformationRequestResponse.cs +++ b/src/GlobalPayments.Api/Gateways/BillPay/Responses/TokenInformationRequestResponse.cs @@ -1,7 +1,6 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Entities.Billing; using GlobalPayments.Api.Utils; -using System; using System.Collections.Generic; using System.Xml; diff --git a/src/GlobalPayments.Api/Gateways/BillPay/Responses/TransactionByOrderIDRequestResponse.cs b/src/GlobalPayments.Api/Gateways/BillPay/Responses/TransactionByOrderIDRequestResponse.cs index d4286279..145f471a 100644 --- a/src/GlobalPayments.Api/Gateways/BillPay/Responses/TransactionByOrderIDRequestResponse.cs +++ b/src/GlobalPayments.Api/Gateways/BillPay/Responses/TransactionByOrderIDRequestResponse.cs @@ -3,7 +3,6 @@ using GlobalPayments.Api.Utils; using System; using System.Collections.Generic; -using System.Xml; namespace GlobalPayments.Api.Gateways.BillPay { internal sealed class TransactionByOrderIDRequestResponse : BillPayResponseBase { diff --git a/src/GlobalPayments.Api/Gateways/Events/IGatewayEvent.cs b/src/GlobalPayments.Api/Gateways/Events/IGatewayEvent.cs index bfb8219e..e1ea2efd 100644 --- a/src/GlobalPayments.Api/Gateways/Events/IGatewayEvent.cs +++ b/src/GlobalPayments.Api/Gateways/Events/IGatewayEvent.cs @@ -1,6 +1,4 @@ -using System; - -namespace GlobalPayments.Api.Gateways.Events { +namespace GlobalPayments.Api.Gateways.Events { public interface IGatewayEvent { GatewayEventType GetEventType(); string GetTimestamp(); diff --git a/src/GlobalPayments.Api/Gateways/IPayFacProvider.cs b/src/GlobalPayments.Api/Gateways/IPayFacProvider.cs index 7cbc9b1d..d44e658b 100644 --- a/src/GlobalPayments.Api/Gateways/IPayFacProvider.cs +++ b/src/GlobalPayments.Api/Gateways/IPayFacProvider.cs @@ -1,8 +1,5 @@ using GlobalPayments.Api.Builders; using GlobalPayments.Api.Entities; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Gateways { diff --git a/src/GlobalPayments.Api/Gateways/NetworkGateway.cs b/src/GlobalPayments.Api/Gateways/NetworkGateway.cs index fbebd70c..67626797 100644 --- a/src/GlobalPayments.Api/Gateways/NetworkGateway.cs +++ b/src/GlobalPayments.Api/Gateways/NetworkGateway.cs @@ -1,15 +1,11 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Gateways.Events; using GlobalPayments.Api.Terminals.Abstractions; -using GlobalPayments.Api.Terminals.Extensions; -using GlobalPayments.Api.Utils; using System; using System.Collections.Generic; using System.IO; -using System.Net; using System.Net.Security; using System.Net.Sockets; -using System.Security.Cryptography.X509Certificates; namespace GlobalPayments.Api.Gateways { public class NetworkGateway { diff --git a/src/GlobalPayments.Api/Gateways/ProPayConnector.cs b/src/GlobalPayments.Api/Gateways/ProPayConnector.cs index 21344547..c69814d0 100644 --- a/src/GlobalPayments.Api/Gateways/ProPayConnector.cs +++ b/src/GlobalPayments.Api/Gateways/ProPayConnector.cs @@ -5,7 +5,6 @@ using System; using System.Collections.Generic; using System.Security.Cryptography.X509Certificates; -using System.Text; namespace GlobalPayments.Api.Gateways { internal class ProPayConnector : XmlGateway, IPayFacProvider { diff --git a/src/GlobalPayments.Api/Gateways/TransitConnector.cs b/src/GlobalPayments.Api/Gateways/TransitConnector.cs index d3ab2016..81a02696 100644 --- a/src/GlobalPayments.Api/Gateways/TransitConnector.cs +++ b/src/GlobalPayments.Api/Gateways/TransitConnector.cs @@ -1,5 +1,4 @@ using System; -using System.Collections.Generic; using System.IO; using System.Security.Cryptography; using System.Text; diff --git a/src/GlobalPayments.Api/Logging/IRequestLogger.cs b/src/GlobalPayments.Api/Logging/IRequestLogger.cs index 92732f29..08d14840 100644 --- a/src/GlobalPayments.Api/Logging/IRequestLogger.cs +++ b/src/GlobalPayments.Api/Logging/IRequestLogger.cs @@ -1,6 +1,4 @@ -using System; - -namespace GlobalPayments.Api.Logging { +namespace GlobalPayments.Api.Logging { public interface IRequestLogger { void RequestSent(string request); void ResponseReceived(string response); diff --git a/src/GlobalPayments.Api/Network/Elements/DE117_WIC_Data_Field_EA.cs b/src/GlobalPayments.Api/Network/Elements/DE117_WIC_Data_Field_EA.cs index 031fc161..5c960b44 100644 --- a/src/GlobalPayments.Api/Network/Elements/DE117_WIC_Data_Field_EA.cs +++ b/src/GlobalPayments.Api/Network/Elements/DE117_WIC_Data_Field_EA.cs @@ -1,9 +1,4 @@ -using GlobalPayments.Api.Utils; -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Network.Elements { +namespace GlobalPayments.Api.Network.Elements { public class DE117_WIC_Data_Field_EA { public string UPCData { get; set; } public string ItemDesciption { get; set; } diff --git a/src/GlobalPayments.Api/Network/Elements/DE117_WIC_Data_Field_PS.cs b/src/GlobalPayments.Api/Network/Elements/DE117_WIC_Data_Field_PS.cs index 2400b49e..dfdd4ff5 100644 --- a/src/GlobalPayments.Api/Network/Elements/DE117_WIC_Data_Field_PS.cs +++ b/src/GlobalPayments.Api/Network/Elements/DE117_WIC_Data_Field_PS.cs @@ -1,9 +1,4 @@ -using GlobalPayments.Api.Utils; -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Network.Elements { +namespace GlobalPayments.Api.Network.Elements { public class DE117_WIC_Data_Field_PS { public string UPCData { get; set; } public string CategoryCode { get; set; } diff --git a/src/GlobalPayments.Api/Network/Elements/DE43_CardAcceptorData.cs b/src/GlobalPayments.Api/Network/Elements/DE43_CardAcceptorData.cs index dac07170..68827fa9 100644 --- a/src/GlobalPayments.Api/Network/Elements/DE43_CardAcceptorData.cs +++ b/src/GlobalPayments.Api/Network/Elements/DE43_CardAcceptorData.cs @@ -1,7 +1,6 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Network.Abstractions; using GlobalPayments.Api.Utils; -using System; using System.Text; namespace GlobalPayments.Api.Network.Elements { diff --git a/src/GlobalPayments.Api/Network/Elements/DE56_OriginalDataElements.cs b/src/GlobalPayments.Api/Network/Elements/DE56_OriginalDataElements.cs index e0efa43e..d7ba07ce 100644 --- a/src/GlobalPayments.Api/Network/Elements/DE56_OriginalDataElements.cs +++ b/src/GlobalPayments.Api/Network/Elements/DE56_OriginalDataElements.cs @@ -1,6 +1,5 @@ using GlobalPayments.Api.Network.Abstractions; using GlobalPayments.Api.Utils; -using System; using System.Text; namespace GlobalPayments.Api.Network.Elements { diff --git a/src/GlobalPayments.Api/Network/Elements/DE63_ProductDataEntry.cs b/src/GlobalPayments.Api/Network/Elements/DE63_ProductDataEntry.cs index ce0e3a49..6d412be7 100644 --- a/src/GlobalPayments.Api/Network/Elements/DE63_ProductDataEntry.cs +++ b/src/GlobalPayments.Api/Network/Elements/DE63_ProductDataEntry.cs @@ -1,5 +1,4 @@ using GlobalPayments.Api.Network.Entities; -using System; namespace GlobalPayments.Api.Network.Elements { public class DE63_ProductDataEntry { diff --git a/src/GlobalPayments.Api/Network/Elements/EWICData.cs b/src/GlobalPayments.Api/Network/Elements/EWICData.cs index dc9c9d8d..f8a4af47 100644 --- a/src/GlobalPayments.Api/Network/Elements/EWICData.cs +++ b/src/GlobalPayments.Api/Network/Elements/EWICData.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Network.Elements { +namespace GlobalPayments.Api.Network.Elements { public class EWICData { private DE117_WIC_Data_Fields ewicData; public EWICData() { diff --git a/src/GlobalPayments.Api/Network/Entities/PriorMessageInformation.cs b/src/GlobalPayments.Api/Network/Entities/PriorMessageInformation.cs index 75cf7cd1..d526a6c3 100644 --- a/src/GlobalPayments.Api/Network/Entities/PriorMessageInformation.cs +++ b/src/GlobalPayments.Api/Network/Entities/PriorMessageInformation.cs @@ -1,5 +1,4 @@ using GlobalPayments.Api.Utils; -using System; namespace GlobalPayments.Api.Network.Entities { public class PriorMessageInformation { diff --git a/src/GlobalPayments.Api/Network/Entities/ProductData.cs b/src/GlobalPayments.Api/Network/Entities/ProductData.cs index 677126e4..a49ad5c4 100644 --- a/src/GlobalPayments.Api/Network/Entities/ProductData.cs +++ b/src/GlobalPayments.Api/Network/Entities/ProductData.cs @@ -1,6 +1,5 @@ using GlobalPayments.Api.Network.Elements; using GlobalPayments.Api.Utils; -using System.Linq; namespace GlobalPayments.Api.Network.Entities { public class ProductData { diff --git a/src/GlobalPayments.Api/Network/Entities/RecordDataEntry.cs b/src/GlobalPayments.Api/Network/Entities/RecordDataEntry.cs index b1c6b767..68b4b7a8 100644 --- a/src/GlobalPayments.Api/Network/Entities/RecordDataEntry.cs +++ b/src/GlobalPayments.Api/Network/Entities/RecordDataEntry.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Network.Entities { +namespace GlobalPayments.Api.Network.Entities { public class RecordDataEntry { public string MessageVersion { get; set; } public string TransactionDate { get; set; } diff --git a/src/GlobalPayments.Api/Network/Enums/DE39_ActionCode.cs b/src/GlobalPayments.Api/Network/Enums/DE39_ActionCode.cs index 41b547e9..7d4a790c 100644 --- a/src/GlobalPayments.Api/Network/Enums/DE39_ActionCode.cs +++ b/src/GlobalPayments.Api/Network/Enums/DE39_ActionCode.cs @@ -1,5 +1,4 @@ -using GlobalPayments.Api.Utils; -using System; +using System; namespace GlobalPayments.Api.Network.Entities { public enum DE39_ActionCode { } diff --git a/src/GlobalPayments.Api/Network/Enums/DE62_C00_2_VerificationType.cs b/src/GlobalPayments.Api/Network/Enums/DE62_C00_2_VerificationType.cs index 0290dd6b..29010a39 100644 --- a/src/GlobalPayments.Api/Network/Enums/DE62_C00_2_VerificationType.cs +++ b/src/GlobalPayments.Api/Network/Enums/DE62_C00_2_VerificationType.cs @@ -1,7 +1,4 @@ using GlobalPayments.Api.Utils; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Network.Entities { diff --git a/src/GlobalPayments.Api/Network/Enums/NetworkGatewayType.cs b/src/GlobalPayments.Api/Network/Enums/NetworkGatewayType.cs index 343ea519..5fb4d55b 100644 --- a/src/GlobalPayments.Api/Network/Enums/NetworkGatewayType.cs +++ b/src/GlobalPayments.Api/Network/Enums/NetworkGatewayType.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace GlobalPayments.Api.Network.Enums { +namespace GlobalPayments.Api.Network.Enums { public enum NetworkGatewayType { NWS, VAPS diff --git a/src/GlobalPayments.Api/Network/Enums/UnitOfMeasure.cs b/src/GlobalPayments.Api/Network/Enums/UnitOfMeasure.cs index b592d5db..bcd77dc4 100644 --- a/src/GlobalPayments.Api/Network/Enums/UnitOfMeasure.cs +++ b/src/GlobalPayments.Api/Network/Enums/UnitOfMeasure.cs @@ -1,7 +1,4 @@ using GlobalPayments.Api.Utils; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Network.Entities { [MapTarget(Target.NWS)] diff --git a/src/GlobalPayments.Api/PaymentMethods/Credit.cs b/src/GlobalPayments.Api/PaymentMethods/Credit.cs index ffc90e79..2f34efbf 100644 --- a/src/GlobalPayments.Api/PaymentMethods/Credit.cs +++ b/src/GlobalPayments.Api/PaymentMethods/Credit.cs @@ -1,6 +1,5 @@ using GlobalPayments.Api.Builders; using GlobalPayments.Api.Entities; -using GlobalPayments.Api.Entities.Billing; namespace GlobalPayments.Api.PaymentMethods { /// diff --git a/src/GlobalPayments.Api/PaymentMethods/Debit.cs b/src/GlobalPayments.Api/PaymentMethods/Debit.cs index a0b8adde..ebe7f8fa 100644 --- a/src/GlobalPayments.Api/PaymentMethods/Debit.cs +++ b/src/GlobalPayments.Api/PaymentMethods/Debit.cs @@ -1,5 +1,4 @@ -using System; -using GlobalPayments.Api.Builders; +using GlobalPayments.Api.Builders; using GlobalPayments.Api.Entities; namespace GlobalPayments.Api.PaymentMethods { diff --git a/src/GlobalPayments.Api/PaymentMethods/Ewic.cs b/src/GlobalPayments.Api/PaymentMethods/Ewic.cs index ed212873..3b31ec7a 100644 --- a/src/GlobalPayments.Api/PaymentMethods/Ewic.cs +++ b/src/GlobalPayments.Api/PaymentMethods/Ewic.cs @@ -1,8 +1,5 @@ using GlobalPayments.Api.Builders; using GlobalPayments.Api.Entities; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.PaymentMethods { public class Ewic : IPaymentMethod, IBalanceable, IChargable, IPinProtected { diff --git a/src/GlobalPayments.Api/PaymentMethods/EwicCardData.cs b/src/GlobalPayments.Api/PaymentMethods/EwicCardData.cs index d80e8843..e67a6a45 100644 --- a/src/GlobalPayments.Api/PaymentMethods/EwicCardData.cs +++ b/src/GlobalPayments.Api/PaymentMethods/EwicCardData.cs @@ -1,7 +1,5 @@ using GlobalPayments.Api.Entities; using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.PaymentMethods { diff --git a/src/GlobalPayments.Api/PaymentMethods/EwicTrackData.cs b/src/GlobalPayments.Api/PaymentMethods/EwicTrackData.cs index e91ac6cd..6529571c 100644 --- a/src/GlobalPayments.Api/PaymentMethods/EwicTrackData.cs +++ b/src/GlobalPayments.Api/PaymentMethods/EwicTrackData.cs @@ -1,8 +1,5 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Utils; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.PaymentMethods { public class EwicTrackData : Ewic, ITrackData { diff --git a/src/GlobalPayments.Api/PaymentMethods/RecurringPaymentMethod.cs b/src/GlobalPayments.Api/PaymentMethods/RecurringPaymentMethod.cs index c82970bb..1a3ccd62 100644 --- a/src/GlobalPayments.Api/PaymentMethods/RecurringPaymentMethod.cs +++ b/src/GlobalPayments.Api/PaymentMethods/RecurringPaymentMethod.cs @@ -1,6 +1,5 @@ using GlobalPayments.Api.Builders; using GlobalPayments.Api.Entities; -using GlobalPayments.Api.Services; namespace GlobalPayments.Api.PaymentMethods { diff --git a/src/GlobalPayments.Api/PaymentMethods/eCheck.cs b/src/GlobalPayments.Api/PaymentMethods/eCheck.cs index 53c4e2b1..0d84b8cc 100644 --- a/src/GlobalPayments.Api/PaymentMethods/eCheck.cs +++ b/src/GlobalPayments.Api/PaymentMethods/eCheck.cs @@ -1,7 +1,6 @@ using System; using GlobalPayments.Api.Builders; using GlobalPayments.Api.Entities; -using GlobalPayments.Api.Entities.Billing; namespace GlobalPayments.Api.PaymentMethods { /// diff --git a/src/GlobalPayments.Api/Properties/AssemblyInfo.cs b/src/GlobalPayments.Api/Properties/AssemblyInfo.cs index 52a32920..e96cc701 100644 --- a/src/GlobalPayments.Api/Properties/AssemblyInfo.cs +++ b/src/GlobalPayments.Api/Properties/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following diff --git a/src/GlobalPayments.Api/ServiceConfigs/AcceptorConfig.cs b/src/GlobalPayments.Api/ServiceConfigs/AcceptorConfig.cs index bd13e941..48fcc105 100644 --- a/src/GlobalPayments.Api/ServiceConfigs/AcceptorConfig.cs +++ b/src/GlobalPayments.Api/ServiceConfigs/AcceptorConfig.cs @@ -1,7 +1,5 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Network.Entities; -using GlobalPayments.Api.Utils; -using System; namespace GlobalPayments.Api.ServiceConfigs { public class AcceptorConfig { diff --git a/src/GlobalPayments.Api/ServiceConfigs/BoardingConfig.cs b/src/GlobalPayments.Api/ServiceConfigs/BoardingConfig.cs index 797dbe67..91262426 100644 --- a/src/GlobalPayments.Api/ServiceConfigs/BoardingConfig.cs +++ b/src/GlobalPayments.Api/ServiceConfigs/BoardingConfig.cs @@ -1,5 +1,4 @@ using GlobalPayments.Api.Gateways; -using System; namespace GlobalPayments.Api { public class BoardingConfig : Configuration { diff --git a/src/GlobalPayments.Api/ServiceConfigs/Gateways/AcceptorConfig.cs b/src/GlobalPayments.Api/ServiceConfigs/Gateways/AcceptorConfig.cs index 35cdd50b..3b8afd20 100644 --- a/src/GlobalPayments.Api/ServiceConfigs/Gateways/AcceptorConfig.cs +++ b/src/GlobalPayments.Api/ServiceConfigs/Gateways/AcceptorConfig.cs @@ -1,5 +1,4 @@ -using System; -using System.Reflection; +using System.Reflection; using GlobalPayments.Api.Entities; using GlobalPayments.Api.Network.Entities; using GlobalPayments.Api.Utils; diff --git a/src/GlobalPayments.Api/ServiceConfigs/Gateways/GeniusConfig.cs b/src/GlobalPayments.Api/ServiceConfigs/Gateways/GeniusConfig.cs index bf864803..4dd73077 100644 --- a/src/GlobalPayments.Api/ServiceConfigs/Gateways/GeniusConfig.cs +++ b/src/GlobalPayments.Api/ServiceConfigs/Gateways/GeniusConfig.cs @@ -1,5 +1,4 @@ -using System; -using GlobalPayments.Api.Entities; +using GlobalPayments.Api.Entities; using GlobalPayments.Api.Gateways; namespace GlobalPayments.Api { diff --git a/src/GlobalPayments.Api/ServiceConfigs/Gateways/GpApiConfig.cs b/src/GlobalPayments.Api/ServiceConfigs/Gateways/GpApiConfig.cs index 038d5338..d4b09af2 100644 --- a/src/GlobalPayments.Api/ServiceConfigs/Gateways/GpApiConfig.cs +++ b/src/GlobalPayments.Api/ServiceConfigs/Gateways/GpApiConfig.cs @@ -1,8 +1,5 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Gateways; -using GlobalPayments.Api.Utils; -using System; -using System.Globalization; namespace GlobalPayments.Api { public class GpApiConfig : GatewayConfig { diff --git a/src/GlobalPayments.Api/ServiceConfigs/Gateways/GpEcomConfig.cs b/src/GlobalPayments.Api/ServiceConfigs/Gateways/GpEcomConfig.cs index b6a8d2d3..c4f03c8f 100644 --- a/src/GlobalPayments.Api/ServiceConfigs/Gateways/GpEcomConfig.cs +++ b/src/GlobalPayments.Api/ServiceConfigs/Gateways/GpEcomConfig.cs @@ -1,5 +1,4 @@ -using System; -using GlobalPayments.Api.Entities; +using GlobalPayments.Api.Entities; using GlobalPayments.Api.Gateways; namespace GlobalPayments.Api { diff --git a/src/GlobalPayments.Api/ServiceConfigs/NetworkGatewayConfig.cs b/src/GlobalPayments.Api/ServiceConfigs/NetworkGatewayConfig.cs index 8f6e8640..e729d6dc 100644 --- a/src/GlobalPayments.Api/ServiceConfigs/NetworkGatewayConfig.cs +++ b/src/GlobalPayments.Api/ServiceConfigs/NetworkGatewayConfig.cs @@ -1,5 +1,4 @@ -using GlobalPayments.Api.Builders; -using GlobalPayments.Api.Entities; +using GlobalPayments.Api.Entities; using GlobalPayments.Api.Gateways; using GlobalPayments.Api.Network.Abstractions; using GlobalPayments.Api.Network.Entities; diff --git a/src/GlobalPayments.Api/ServiceConfigs/PayrollConfig.cs b/src/GlobalPayments.Api/ServiceConfigs/PayrollConfig.cs index 67d5776e..5d43e1c0 100644 --- a/src/GlobalPayments.Api/ServiceConfigs/PayrollConfig.cs +++ b/src/GlobalPayments.Api/ServiceConfigs/PayrollConfig.cs @@ -1,7 +1,4 @@ using GlobalPayments.Api.Entities; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api { public class PayrollConfig : Configuration { diff --git a/src/GlobalPayments.Api/ServiceConfigs/TableServiceConfig.cs b/src/GlobalPayments.Api/ServiceConfigs/TableServiceConfig.cs index f7bf1411..ac734681 100644 --- a/src/GlobalPayments.Api/ServiceConfigs/TableServiceConfig.cs +++ b/src/GlobalPayments.Api/ServiceConfigs/TableServiceConfig.cs @@ -1,6 +1,5 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Gateways; -using System; namespace GlobalPayments.Api { public class TableServiceConfig : Configuration { diff --git a/src/GlobalPayments.Api/Services/AdminService.cs b/src/GlobalPayments.Api/Services/AdminService.cs index c77d5324..c4474b6f 100644 --- a/src/GlobalPayments.Api/Services/AdminService.cs +++ b/src/GlobalPayments.Api/Services/AdminService.cs @@ -1,9 +1,6 @@ using GlobalPayments.Api.Builders; using GlobalPayments.Api.Entities; using GlobalPayments.Api.Network.Entities; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Services { public class AdminService { diff --git a/src/GlobalPayments.Api/Services/CheckService.cs b/src/GlobalPayments.Api/Services/CheckService.cs index a3e94638..bf6b866c 100644 --- a/src/GlobalPayments.Api/Services/CheckService.cs +++ b/src/GlobalPayments.Api/Services/CheckService.cs @@ -1,5 +1,4 @@ -using System; -using GlobalPayments.Api.Builders; +using GlobalPayments.Api.Builders; using GlobalPayments.Api.Entities; using GlobalPayments.Api.PaymentMethods; diff --git a/src/GlobalPayments.Api/Services/DebitService.cs b/src/GlobalPayments.Api/Services/DebitService.cs index 5f31b65a..b8c0b25e 100644 --- a/src/GlobalPayments.Api/Services/DebitService.cs +++ b/src/GlobalPayments.Api/Services/DebitService.cs @@ -1,5 +1,4 @@ -using System; -using GlobalPayments.Api.Builders; +using GlobalPayments.Api.Builders; using GlobalPayments.Api.Entities; using GlobalPayments.Api.PaymentMethods; diff --git a/src/GlobalPayments.Api/Services/GpApiService.cs b/src/GlobalPayments.Api/Services/GpApiService.cs index b940c174..400276cb 100644 --- a/src/GlobalPayments.Api/Services/GpApiService.cs +++ b/src/GlobalPayments.Api/Services/GpApiService.cs @@ -1,8 +1,5 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Gateways; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Services { public class GpApiService { diff --git a/src/GlobalPayments.Api/Services/PayFacService.cs b/src/GlobalPayments.Api/Services/PayFacService.cs index e283fea9..ea478856 100644 --- a/src/GlobalPayments.Api/Services/PayFacService.cs +++ b/src/GlobalPayments.Api/Services/PayFacService.cs @@ -1,8 +1,6 @@ using GlobalPayments.Api.Builders; using GlobalPayments.Api.Entities; using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Services { diff --git a/src/GlobalPayments.Api/Terminals/Abstractions/ICardBrandSummary.cs b/src/GlobalPayments.Api/Terminals/Abstractions/ICardBrandSummary.cs index b762f166..e6e8b2ad 100644 --- a/src/GlobalPayments.Api/Terminals/Abstractions/ICardBrandSummary.cs +++ b/src/GlobalPayments.Api/Terminals/Abstractions/ICardBrandSummary.cs @@ -1,7 +1,4 @@ using GlobalPayments.Api.Entities; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Terminals.Abstractions { public interface ICardBrandSummary { diff --git a/src/GlobalPayments.Api/Terminals/Abstractions/IDeviceMessage.cs b/src/GlobalPayments.Api/Terminals/Abstractions/IDeviceMessage.cs index 3f9b86c7..3c826228 100644 --- a/src/GlobalPayments.Api/Terminals/Abstractions/IDeviceMessage.cs +++ b/src/GlobalPayments.Api/Terminals/Abstractions/IDeviceMessage.cs @@ -1,6 +1,4 @@ -using System; - -namespace GlobalPayments.Api.Terminals.Abstractions { +namespace GlobalPayments.Api.Terminals.Abstractions { public interface IDeviceMessage { bool KeepAlive { get; set; } bool AwaitResponse { get; set; } diff --git a/src/GlobalPayments.Api/Terminals/Abstractions/IEODResponse.cs b/src/GlobalPayments.Api/Terminals/Abstractions/IEODResponse.cs index aff1ad59..cc7e1cfc 100644 --- a/src/GlobalPayments.Api/Terminals/Abstractions/IEODResponse.cs +++ b/src/GlobalPayments.Api/Terminals/Abstractions/IEODResponse.cs @@ -1,7 +1,4 @@ -using GlobalPayments.Api.Terminals.HPA.Responses; -using System.Collections.Generic; - -namespace GlobalPayments.Api.Terminals.Abstractions { +namespace GlobalPayments.Api.Terminals.Abstractions { public interface IEODResponse : IDeviceResponse { IDeviceResponse AttachmentResponse { get; } IDeviceResponse BatchCloseResponse { get; } diff --git a/src/GlobalPayments.Api/Terminals/Abstractions/IInitializeResponse.cs b/src/GlobalPayments.Api/Terminals/Abstractions/IInitializeResponse.cs index 4848f293..ec5c6598 100644 --- a/src/GlobalPayments.Api/Terminals/Abstractions/IInitializeResponse.cs +++ b/src/GlobalPayments.Api/Terminals/Abstractions/IInitializeResponse.cs @@ -1,5 +1,4 @@ -using System; -namespace GlobalPayments.Api.Terminals.Abstractions { +namespace GlobalPayments.Api.Terminals.Abstractions { public interface IInitializeResponse : IDeviceResponse { string SerialNumber { get; set; } } diff --git a/src/GlobalPayments.Api/Terminals/Abstractions/IRequestIdProvider.cs b/src/GlobalPayments.Api/Terminals/Abstractions/IRequestIdProvider.cs index 0df477e8..78cdc08d 100644 --- a/src/GlobalPayments.Api/Terminals/Abstractions/IRequestIdProvider.cs +++ b/src/GlobalPayments.Api/Terminals/Abstractions/IRequestIdProvider.cs @@ -1,6 +1,4 @@ -using GlobalPayments.Api.Terminals.Builders; - -namespace GlobalPayments.Api.Terminals.Abstractions { +namespace GlobalPayments.Api.Terminals.Abstractions { public interface IRequestIdProvider { int GetRequestId(); } diff --git a/src/GlobalPayments.Api/Terminals/Abstractions/IRequestSubGroup.cs b/src/GlobalPayments.Api/Terminals/Abstractions/IRequestSubGroup.cs index 666b1eb2..6944905f 100644 --- a/src/GlobalPayments.Api/Terminals/Abstractions/IRequestSubGroup.cs +++ b/src/GlobalPayments.Api/Terminals/Abstractions/IRequestSubGroup.cs @@ -1,6 +1,4 @@ -using System; - -namespace GlobalPayments.Api.Terminals.Abstractions { +namespace GlobalPayments.Api.Terminals.Abstractions { internal interface IRequestSubGroup { string GetElementString(); } diff --git a/src/GlobalPayments.Api/Terminals/Abstractions/IResponseSubGroup.cs b/src/GlobalPayments.Api/Terminals/Abstractions/IResponseSubGroup.cs index 61e72ff5..021f2cd8 100644 --- a/src/GlobalPayments.Api/Terminals/Abstractions/IResponseSubGroup.cs +++ b/src/GlobalPayments.Api/Terminals/Abstractions/IResponseSubGroup.cs @@ -1,7 +1,4 @@ -using System; -using System.IO; - -namespace GlobalPayments.Api.Terminals.Abstractions { +namespace GlobalPayments.Api.Terminals.Abstractions { internal interface IResponseSubGroup { } diff --git a/src/GlobalPayments.Api/Terminals/Builders/TerminalAuthBuilder.cs b/src/GlobalPayments.Api/Terminals/Builders/TerminalAuthBuilder.cs index 99058151..776a6a2f 100644 --- a/src/GlobalPayments.Api/Terminals/Builders/TerminalAuthBuilder.cs +++ b/src/GlobalPayments.Api/Terminals/Builders/TerminalAuthBuilder.cs @@ -1,5 +1,4 @@ -using GlobalPayments.Api.Builders; -using GlobalPayments.Api.Entities; +using GlobalPayments.Api.Entities; using GlobalPayments.Api.PaymentMethods; using GlobalPayments.Api.Terminals.Abstractions; diff --git a/src/GlobalPayments.Api/Terminals/ConnectionConfig.cs b/src/GlobalPayments.Api/Terminals/ConnectionConfig.cs index f200899b..277a1f81 100644 --- a/src/GlobalPayments.Api/Terminals/ConnectionConfig.cs +++ b/src/GlobalPayments.Api/Terminals/ConnectionConfig.cs @@ -2,7 +2,6 @@ using GlobalPayments.Api.Terminals.PAX; using GlobalPayments.Api.Terminals.HPA; using GlobalPayments.Api.Terminals.Abstractions; -using GlobalPayments.Api.Terminals.Genius; namespace GlobalPayments.Api.Terminals { public enum ConnectionModes { diff --git a/src/GlobalPayments.Api/Terminals/ControlCodes.cs b/src/GlobalPayments.Api/Terminals/ControlCodes.cs index af2587a9..2dec9f48 100644 --- a/src/GlobalPayments.Api/Terminals/ControlCodes.cs +++ b/src/GlobalPayments.Api/Terminals/ControlCodes.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace GlobalPayments.Api.Terminals { +namespace GlobalPayments.Api.Terminals { public enum ControlCodes : byte { STX = 0x02, ETX = 0x03, diff --git a/src/GlobalPayments.Api/Terminals/Extensions/BitConverterExtensions.cs b/src/GlobalPayments.Api/Terminals/Extensions/BitConverterExtensions.cs index 10c608e0..eb5391ed 100644 --- a/src/GlobalPayments.Api/Terminals/Extensions/BitConverterExtensions.cs +++ b/src/GlobalPayments.Api/Terminals/Extensions/BitConverterExtensions.cs @@ -1,6 +1,4 @@ -using System; - -namespace System { +namespace System { public static partial class BitConverterX { public static short ToInt16(byte[] buffer, int startIndex) { byte[] lengthBuffer = new byte[2]; diff --git a/src/GlobalPayments.Api/Terminals/Genius/GeniusInterface.cs b/src/GlobalPayments.Api/Terminals/Genius/GeniusInterface.cs index d38d4741..95ba3f94 100644 --- a/src/GlobalPayments.Api/Terminals/Genius/GeniusInterface.cs +++ b/src/GlobalPayments.Api/Terminals/Genius/GeniusInterface.cs @@ -1,9 +1,4 @@ -using System; -using GlobalPayments.Api.Entities; -using GlobalPayments.Api.Terminals.Abstractions; -using GlobalPayments.Api.Terminals.Builders; - -namespace GlobalPayments.Api.Terminals.Genius { +namespace GlobalPayments.Api.Terminals.Genius { internal class GeniusInterface : DeviceInterface { internal GeniusInterface(GeniusController controller) : base(controller) { } diff --git a/src/GlobalPayments.Api/Terminals/HPA/HpaEnums.cs b/src/GlobalPayments.Api/Terminals/HPA/HpaEnums.cs index fd88c414..70c96658 100644 --- a/src/GlobalPayments.Api/Terminals/HPA/HpaEnums.cs +++ b/src/GlobalPayments.Api/Terminals/HPA/HpaEnums.cs @@ -1,6 +1,4 @@ -using System; - -namespace GlobalPayments.Api.Terminals.HPA { +namespace GlobalPayments.Api.Terminals.HPA { public enum MessageFormat { HPA, Visa2nd diff --git a/src/GlobalPayments.Api/Terminals/HPA/HpaInterface.cs b/src/GlobalPayments.Api/Terminals/HPA/HpaInterface.cs index 71be05bd..3c7b30e0 100644 --- a/src/GlobalPayments.Api/Terminals/HPA/HpaInterface.cs +++ b/src/GlobalPayments.Api/Terminals/HPA/HpaInterface.cs @@ -3,7 +3,6 @@ using GlobalPayments.Api.Terminals.Abstractions; using GlobalPayments.Api.Terminals.Builders; using GlobalPayments.Api.Terminals.HPA.Responses; -using GlobalPayments.Api.Terminals.Messaging; using System.Text; using System.Linq; using System.Collections.Generic; diff --git a/src/GlobalPayments.Api/Terminals/HPA/Responses/HeartBeatResponse.cs b/src/GlobalPayments.Api/Terminals/HPA/Responses/HeartBeatResponse.cs index 1f6cf9fb..74709c9f 100644 --- a/src/GlobalPayments.Api/Terminals/HPA/Responses/HeartBeatResponse.cs +++ b/src/GlobalPayments.Api/Terminals/HPA/Responses/HeartBeatResponse.cs @@ -1,7 +1,4 @@ using GlobalPayments.Api.Utils; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Terminals.HPA.Responses { public class HeartBeatResponse : SipBaseResponse { diff --git a/src/GlobalPayments.Api/Terminals/HPA/Responses/SAFResponse.cs b/src/GlobalPayments.Api/Terminals/HPA/Responses/SAFResponse.cs index e841d3fd..d1519adf 100644 --- a/src/GlobalPayments.Api/Terminals/HPA/Responses/SAFResponse.cs +++ b/src/GlobalPayments.Api/Terminals/HPA/Responses/SAFResponse.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Linq; using GlobalPayments.Api.Entities; using GlobalPayments.Api.Terminals.Abstractions; using GlobalPayments.Api.Utils; diff --git a/src/GlobalPayments.Api/Terminals/HPA/Responses/SipKvpResponse.cs b/src/GlobalPayments.Api/Terminals/HPA/Responses/SipKvpResponse.cs index cd3a0b83..36315847 100644 --- a/src/GlobalPayments.Api/Terminals/HPA/Responses/SipKvpResponse.cs +++ b/src/GlobalPayments.Api/Terminals/HPA/Responses/SipKvpResponse.cs @@ -1,8 +1,5 @@ using GlobalPayments.Api.Utils; -using System; -using System.Collections; using System.Collections.Generic; -using System.Globalization; using System.Text; namespace GlobalPayments.Api.Terminals.HPA.Responses { diff --git a/src/GlobalPayments.Api/Terminals/PAX/PaxEnums.cs b/src/GlobalPayments.Api/Terminals/PAX/PaxEnums.cs index 57393455..217bead7 100644 --- a/src/GlobalPayments.Api/Terminals/PAX/PaxEnums.cs +++ b/src/GlobalPayments.Api/Terminals/PAX/PaxEnums.cs @@ -1,6 +1,4 @@ -using System; - -namespace GlobalPayments.Api.Terminals.PAX { +namespace GlobalPayments.Api.Terminals.PAX { internal class PAX_MSG_ID { // ADMIN REQUESTS public const string A00_INITIALIZE = "A00"; diff --git a/src/GlobalPayments.Api/Terminals/PAX/Responses/BatchCloseResponse.cs b/src/GlobalPayments.Api/Terminals/PAX/Responses/BatchCloseResponse.cs index eeb978f3..e5806423 100644 --- a/src/GlobalPayments.Api/Terminals/PAX/Responses/BatchCloseResponse.cs +++ b/src/GlobalPayments.Api/Terminals/PAX/Responses/BatchCloseResponse.cs @@ -1,5 +1,4 @@ -using System; -using System.IO; +using System.IO; using GlobalPayments.Api.Terminals.Abstractions; using GlobalPayments.Api.Terminals.Extensions; diff --git a/src/GlobalPayments.Api/Terminals/PAX/Responses/CreditResponse.cs b/src/GlobalPayments.Api/Terminals/PAX/Responses/CreditResponse.cs index 01309363..303668e5 100644 --- a/src/GlobalPayments.Api/Terminals/PAX/Responses/CreditResponse.cs +++ b/src/GlobalPayments.Api/Terminals/PAX/Responses/CreditResponse.cs @@ -1,5 +1,4 @@ -using System; -using System.IO; +using System.IO; using GlobalPayments.Api.Entities; using GlobalPayments.Api.Terminals.Extensions; diff --git a/src/GlobalPayments.Api/Terminals/PAX/Responses/ResetResponse.cs b/src/GlobalPayments.Api/Terminals/PAX/Responses/ResetResponse.cs index 4c1e5735..d463e84a 100644 --- a/src/GlobalPayments.Api/Terminals/PAX/Responses/ResetResponse.cs +++ b/src/GlobalPayments.Api/Terminals/PAX/Responses/ResetResponse.cs @@ -1,6 +1,4 @@ -using System; - -namespace GlobalPayments.Api.Terminals.PAX { +namespace GlobalPayments.Api.Terminals.PAX { public class ResetResponse : PaxTerminalResponse { public ResetResponse(byte[] buffer) : base(buffer, PAX_MSG_ID.A17_RSP_RESET) { } } diff --git a/src/GlobalPayments.Api/Terminals/TerminalReportType.cs b/src/GlobalPayments.Api/Terminals/TerminalReportType.cs index b60df35e..3ef2d5d4 100644 --- a/src/GlobalPayments.Api/Terminals/TerminalReportType.cs +++ b/src/GlobalPayments.Api/Terminals/TerminalReportType.cs @@ -1,6 +1,4 @@ -using System; - -namespace GlobalPayments.Api.Terminals { +namespace GlobalPayments.Api.Terminals { public enum TerminalReportType { LocalDetailReport } diff --git a/src/GlobalPayments.Api/Terminals/TerminalUtilities.cs b/src/GlobalPayments.Api/Terminals/TerminalUtilities.cs index c2647ec6..9d83c066 100644 --- a/src/GlobalPayments.Api/Terminals/TerminalUtilities.cs +++ b/src/GlobalPayments.Api/Terminals/TerminalUtilities.cs @@ -5,7 +5,6 @@ using GlobalPayments.Api.Terminals.Abstractions; using GlobalPayments.Api.Terminals.HPA; using System.IO; -using System.Drawing.Drawing2D; using System.Drawing.Imaging; namespace GlobalPayments.Api.Terminals { diff --git a/src/GlobalPayments.Api/Utils/EmvData.cs b/src/GlobalPayments.Api/Utils/EmvData.cs index 63813540..53b9bc2b 100644 --- a/src/GlobalPayments.Api/Utils/EmvData.cs +++ b/src/GlobalPayments.Api/Utils/EmvData.cs @@ -1,5 +1,4 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; namespace GlobalPayments.Api.Utils { public class EmvData { diff --git a/src/GlobalPayments.Api/Utils/EmvUtils.cs b/src/GlobalPayments.Api/Utils/EmvUtils.cs index 5194561b..c969da34 100644 --- a/src/GlobalPayments.Api/Utils/EmvUtils.cs +++ b/src/GlobalPayments.Api/Utils/EmvUtils.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Diagnostics; namespace GlobalPayments.Api.Utils { public class EmvUtils { diff --git a/src/GlobalPayments.Api/Utils/MessageWriter.cs b/src/GlobalPayments.Api/Utils/MessageWriter.cs index ed55cef4..7d1b468c 100644 --- a/src/GlobalPayments.Api/Utils/MessageWriter.cs +++ b/src/GlobalPayments.Api/Utils/MessageWriter.cs @@ -1,7 +1,4 @@ -using GlobalPayments.Api.Entities; -using System; -using System.Collections.Generic; -using System.Text; +using System.Collections.Generic; namespace GlobalPayments.Api.Utils { public class MessageWriter { diff --git a/src/GlobalPayments.Api/Utils/StringParser.cs b/src/GlobalPayments.Api/Utils/StringParser.cs index 158199c4..423f45ed 100644 --- a/src/GlobalPayments.Api/Utils/StringParser.cs +++ b/src/GlobalPayments.Api/Utils/StringParser.cs @@ -1,7 +1,4 @@ -using GlobalPayments.Api.Entities; -using System; -using System.Collections.Generic; -using System.Text; +using System.Text; namespace GlobalPayments.Api.Utils { diff --git a/tests/GlobalPayments.Api.Tests/BatchProvider.cs b/tests/GlobalPayments.Api.Tests/BatchProvider.cs index 18de1db6..1aab7b01 100644 --- a/tests/GlobalPayments.Api.Tests/BatchProvider.cs +++ b/tests/GlobalPayments.Api.Tests/BatchProvider.cs @@ -1,12 +1,10 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Network.Abstractions; -using GlobalPayments.Api.Network.Elements; using GlobalPayments.Api.Network.Entities; using GlobalPayments.Api.Utils; using System; using System.Collections.Generic; using System.IO; -using System.Text; namespace GlobalPayments.Api.Tests { public class BatchProvider : IBatchProvider { diff --git a/tests/GlobalPayments.Api.Tests/BillPay/BillPayTests.cs b/tests/GlobalPayments.Api.Tests/BillPay/BillPayTests.cs index a6a16116..4215772a 100644 --- a/tests/GlobalPayments.Api.Tests/BillPay/BillPayTests.cs +++ b/tests/GlobalPayments.Api.Tests/BillPay/BillPayTests.cs @@ -6,7 +6,6 @@ using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Collections.Generic; -using System.Diagnostics; using System.Linq; namespace GlobalPayments.Api.Tests.BillPay { diff --git a/tests/GlobalPayments.Api.Tests/CardUtilsTests.cs b/tests/GlobalPayments.Api.Tests/CardUtilsTests.cs index b4c9319e..b2d989ca 100644 --- a/tests/GlobalPayments.Api.Tests/CardUtilsTests.cs +++ b/tests/GlobalPayments.Api.Tests/CardUtilsTests.cs @@ -1,5 +1,4 @@ using GlobalPayments.Api.PaymentMethods; -using GlobalPayments.Api.Utils; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace GlobalPayments.Api.Tests { diff --git a/tests/GlobalPayments.Api.Tests/Certifications/Portico/EcomCheckCertification.cs b/tests/GlobalPayments.Api.Tests/Certifications/Portico/EcomCheckCertification.cs index 0cf25a2a..2911a501 100644 --- a/tests/GlobalPayments.Api.Tests/Certifications/Portico/EcomCheckCertification.cs +++ b/tests/GlobalPayments.Api.Tests/Certifications/Portico/EcomCheckCertification.cs @@ -1,5 +1,4 @@ -using System; -using System.Diagnostics; +using System.Diagnostics; using GlobalPayments.Api.Entities; using GlobalPayments.Api.PaymentMethods; using Microsoft.VisualStudio.TestTools.UnitTesting; diff --git a/tests/GlobalPayments.Api.Tests/Certifications/Portico/RecurringCertification.cs b/tests/GlobalPayments.Api.Tests/Certifications/Portico/RecurringCertification.cs index 723fe84c..f33020b0 100644 --- a/tests/GlobalPayments.Api.Tests/Certifications/Portico/RecurringCertification.cs +++ b/tests/GlobalPayments.Api.Tests/Certifications/Portico/RecurringCertification.cs @@ -1,5 +1,4 @@ using System; -using GlobalPayments.Api; using GlobalPayments.Api.Entities; using GlobalPayments.Api.PaymentMethods; using GlobalPayments.Api.Services; diff --git a/tests/GlobalPayments.Api.Tests/Certifications/Portico/RetailCertification.cs b/tests/GlobalPayments.Api.Tests/Certifications/Portico/RetailCertification.cs index ad48f13c..f8cbbf7c 100644 --- a/tests/GlobalPayments.Api.Tests/Certifications/Portico/RetailCertification.cs +++ b/tests/GlobalPayments.Api.Tests/Certifications/Portico/RetailCertification.cs @@ -1,5 +1,4 @@ -using System; -using System.Diagnostics; +using System.Diagnostics; using GlobalPayments.Api.Entities; using GlobalPayments.Api.PaymentMethods; using GlobalPayments.Api.Services; diff --git a/tests/GlobalPayments.Api.Tests/GpApi/GpApiCreditWithMerchantIdTests.cs b/tests/GlobalPayments.Api.Tests/GpApi/GpApiCreditWithMerchantIdTests.cs index 66fe463f..95841386 100644 --- a/tests/GlobalPayments.Api.Tests/GpApi/GpApiCreditWithMerchantIdTests.cs +++ b/tests/GlobalPayments.Api.Tests/GpApi/GpApiCreditWithMerchantIdTests.cs @@ -4,7 +4,6 @@ using GlobalPayments.Api.Tests.Logging; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; -using System.Collections.Generic; namespace GlobalPayments.Api.Tests.GpApi { [TestClass] diff --git a/tests/GlobalPayments.Api.Tests/GpApi/GpApiDigitalWalletTests.cs b/tests/GlobalPayments.Api.Tests/GpApi/GpApiDigitalWalletTests.cs index 204d8c36..0b3f1652 100644 --- a/tests/GlobalPayments.Api.Tests/GpApi/GpApiDigitalWalletTests.cs +++ b/tests/GlobalPayments.Api.Tests/GpApi/GpApiDigitalWalletTests.cs @@ -1,9 +1,7 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.PaymentMethods; using GlobalPayments.Api.Tests.Logging; -using GlobalPayments.Api.Utils; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; using System.Collections.Generic; namespace GlobalPayments.Api.Tests.GpApi diff --git a/tests/GlobalPayments.Api.Tests/GpEcom/Certification/JsonComparatorTests.cs b/tests/GlobalPayments.Api.Tests/GpEcom/Certification/JsonComparatorTests.cs index 5bceb063..baa1efe0 100644 --- a/tests/GlobalPayments.Api.Tests/GpEcom/Certification/JsonComparatorTests.cs +++ b/tests/GlobalPayments.Api.Tests/GpEcom/Certification/JsonComparatorTests.cs @@ -1,5 +1,4 @@ -using System; -using Microsoft.VisualStudio.TestTools.UnitTesting; +using Microsoft.VisualStudio.TestTools.UnitTesting; namespace GlobalPayments.Api.Tests.Realex.Certification { [TestClass] diff --git a/tests/GlobalPayments.Api.Tests/Logging/RequestConsoleLogger.cs b/tests/GlobalPayments.Api.Tests/Logging/RequestConsoleLogger.cs index 46486e36..358676ec 100644 --- a/tests/GlobalPayments.Api.Tests/Logging/RequestConsoleLogger.cs +++ b/tests/GlobalPayments.Api.Tests/Logging/RequestConsoleLogger.cs @@ -1,5 +1,4 @@ using System; -using System.IO; using System.Threading.Tasks; using GlobalPayments.Api.Logging; diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSAdministrativeTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSAdministrativeTests.cs index 0eec92c0..dbd6c528 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSAdministrativeTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSAdministrativeTests.cs @@ -5,8 +5,6 @@ using GlobalPayments.Api.Services; using GlobalPayments.Api.Tests.TestData; using GlobalPayments.Api.Network.Enums; -using GlobalPayments.Api.Network; -using GlobalPayments.Api.Utils; using System; namespace GlobalPayments.Api.Tests.Network diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSAvsTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSAvsTests.cs index f94a9214..08953464 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSAvsTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSAvsTests.cs @@ -4,9 +4,6 @@ using GlobalPayments.Api.Services; using GlobalPayments.Api.Tests.TestData; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.Network { [TestClass] diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSBatchTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSBatchTests.cs index b187e304..e8d4ba85 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSBatchTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSBatchTests.cs @@ -6,9 +6,6 @@ using GlobalPayments.Api.Services; using GlobalPayments.Api.Tests.TestData; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.Network { [TestClass] diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSCheckTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSCheckTests.cs index 28ee285b..1f7ecc88 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSCheckTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSCheckTests.cs @@ -4,9 +4,6 @@ using GlobalPayments.Api.PaymentMethods; using GlobalPayments.Api.Tests.TestData; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.Network { diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSCvnTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSCvnTests.cs index e3b2f188..c6c5483a 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSCvnTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSCvnTests.cs @@ -5,9 +5,6 @@ using GlobalPayments.Api.Services; using GlobalPayments.Api.Tests.TestData; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; using UnitOfMeasure = GlobalPayments.Api.Network.Entities.UnitOfMeasure; namespace GlobalPayments.Api.Tests.Network { diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSDebitTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSDebitTests.cs index b0d1ba64..7da5f027 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSDebitTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSDebitTests.cs @@ -3,11 +3,7 @@ using GlobalPayments.Api.Network.Enums; using GlobalPayments.Api.PaymentMethods; using GlobalPayments.Api.Services; -using GlobalPayments.Api.Tests.TestData; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.Network { [TestClass] diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSEMVTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSEMVTests.cs index d55bfaa4..7af65992 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSEMVTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSEMVTests.cs @@ -2,8 +2,6 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Network.Entities; using GlobalPayments.Api.PaymentMethods; -using GlobalPayments.Api.Services; -using GlobalPayments.Api.Tests.TestData; using GlobalPayments.Api.Network.Enums; namespace GlobalPayments.Api.Tests.Network diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSEncryptionTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSEncryptionTests.cs index 3b4a9084..dd524a2f 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSEncryptionTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSEncryptionTests.cs @@ -5,9 +5,6 @@ using GlobalPayments.Api.Services; using GlobalPayments.Api.Tests.TestData; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.Network { [TestClass] diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSEwicTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSEwicTests.cs index b150cc62..16ce0b7d 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSEwicTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSEwicTests.cs @@ -4,9 +4,6 @@ using GlobalPayments.Api.Network.Enums; using GlobalPayments.Api.PaymentMethods; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.Network { diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSFleetTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSFleetTests.cs index 76fd76ba..b0c556b5 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSFleetTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSFleetTests.cs @@ -5,9 +5,6 @@ using GlobalPayments.Api.Services; using GlobalPayments.Api.Tests.TestData; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; using UnitOfMeasure = GlobalPayments.Api.Network.Entities.UnitOfMeasure; namespace GlobalPayments.Api.Tests.Network { diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSGiftTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSGiftTests.cs index 5ff8f9c9..0154ca4f 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSGiftTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSGiftTests.cs @@ -6,8 +6,6 @@ using GlobalPayments.Api.Tests.TestData; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.Network { [TestClass] diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSIcrTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSIcrTests.cs index d109ebb6..73d9c920 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSIcrTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSIcrTests.cs @@ -4,9 +4,6 @@ using GlobalPayments.Api.Services; using GlobalPayments.Api.Tests.TestData; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.Network { [TestClass] diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSPanTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSPanTests.cs index 3b034584..f38c933b 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSPanTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSPanTests.cs @@ -4,9 +4,6 @@ using GlobalPayments.Api.PaymentMethods; using GlobalPayments.Api.Tests.TestData; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.Network { [TestClass] diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSTimeoutTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSTimeoutTests.cs index f4dcb7a6..bd5e56d1 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSTimeoutTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSTimeoutTests.cs @@ -1,10 +1,7 @@ using GlobalPayments.Api.Entities; -using GlobalPayments.Api.Gateways.Events; using GlobalPayments.Api.Network.Enums; using GlobalPayments.Api.PaymentMethods; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; using System.Text; namespace GlobalPayments.Api.Tests.Network { diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSWexEMVTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSWexEMVTests.cs index 89f013a2..8060d841 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSWexEMVTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSWexEMVTests.cs @@ -3,9 +3,6 @@ using GlobalPayments.Api.Network.Enums; using GlobalPayments.Api.PaymentMethods; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; using UnitOfMeasure = GlobalPayments.Api.Network.Entities.UnitOfMeasure; namespace GlobalPayments.Api.Tests.Network { diff --git a/tests/GlobalPayments.Api.Tests/Network/NWSWexTests.cs b/tests/GlobalPayments.Api.Tests/Network/NWSWexTests.cs index d82ded00..754703bb 100644 --- a/tests/GlobalPayments.Api.Tests/Network/NWSWexTests.cs +++ b/tests/GlobalPayments.Api.Tests/Network/NWSWexTests.cs @@ -4,9 +4,6 @@ using GlobalPayments.Api.PaymentMethods; using GlobalPayments.Api.Services; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; using UnitOfMeasure = GlobalPayments.Api.Network.Entities.UnitOfMeasure; namespace GlobalPayments.Api.Tests.Network { diff --git a/tests/GlobalPayments.Api.Tests/Portico/PorticoAutoSubTests.cs b/tests/GlobalPayments.Api.Tests/Portico/PorticoAutoSubTests.cs index 41570274..a1e0d45c 100644 --- a/tests/GlobalPayments.Api.Tests/Portico/PorticoAutoSubTests.cs +++ b/tests/GlobalPayments.Api.Tests/Portico/PorticoAutoSubTests.cs @@ -1,9 +1,6 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.PaymentMethods; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.Portico { [TestClass] diff --git a/tests/GlobalPayments.Api.Tests/ProPay/GetInformationTests.cs b/tests/GlobalPayments.Api.Tests/ProPay/GetInformationTests.cs index 93e5d400..181e2a56 100644 --- a/tests/GlobalPayments.Api.Tests/ProPay/GetInformationTests.cs +++ b/tests/GlobalPayments.Api.Tests/ProPay/GetInformationTests.cs @@ -2,8 +2,6 @@ using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using Environment = GlobalPayments.Api.Entities.Environment; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.ProPay { diff --git a/tests/GlobalPayments.Api.Tests/ProPay/ProPayAccountTests.cs b/tests/GlobalPayments.Api.Tests/ProPay/ProPayAccountTests.cs index 725e0968..d137f1ff 100644 --- a/tests/GlobalPayments.Api.Tests/ProPay/ProPayAccountTests.cs +++ b/tests/GlobalPayments.Api.Tests/ProPay/ProPayAccountTests.cs @@ -1,12 +1,10 @@ -using System.Linq; -using GlobalPayments.Api.Services; +using GlobalPayments.Api.Services; using Microsoft.VisualStudio.TestTools.UnitTesting; using GlobalPayments.Api.Entities; using System; using Environment = GlobalPayments.Api.Entities.Environment; using GlobalPayments.Api.Tests.ProPay.TestData; using GlobalPayments.Api.Entities.PayFac; -using GlobalPayments.Api.PaymentMethods; namespace GlobalPayments.Api.Tests.ProPay { [TestClass] diff --git a/tests/GlobalPayments.Api.Tests/ProPay/ProPayFundsTests.cs b/tests/GlobalPayments.Api.Tests/ProPay/ProPayFundsTests.cs index c9faefe5..1f560594 100644 --- a/tests/GlobalPayments.Api.Tests/ProPay/ProPayFundsTests.cs +++ b/tests/GlobalPayments.Api.Tests/ProPay/ProPayFundsTests.cs @@ -2,8 +2,6 @@ using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using Environment = GlobalPayments.Api.Entities.Environment; -using System.Collections.Generic; -using System.Text; using GlobalPayments.Api.Tests.ProPay.TestData; namespace GlobalPayments.Api.Tests.ProPay diff --git a/tests/GlobalPayments.Api.Tests/ProPay/ProPayInNetworkTransactionTests.cs b/tests/GlobalPayments.Api.Tests/ProPay/ProPayInNetworkTransactionTests.cs index f8b7cbc6..6de1b20f 100644 --- a/tests/GlobalPayments.Api.Tests/ProPay/ProPayInNetworkTransactionTests.cs +++ b/tests/GlobalPayments.Api.Tests/ProPay/ProPayInNetworkTransactionTests.cs @@ -2,8 +2,6 @@ using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using Environment = GlobalPayments.Api.Entities.Environment; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.ProPay { diff --git a/tests/GlobalPayments.Api.Tests/ProPay/TestData/TestAccountData.cs b/tests/GlobalPayments.Api.Tests/ProPay/TestData/TestAccountData.cs index ab4c9f62..a15d74a9 100644 --- a/tests/GlobalPayments.Api.Tests/ProPay/TestData/TestAccountData.cs +++ b/tests/GlobalPayments.Api.Tests/ProPay/TestData/TestAccountData.cs @@ -3,7 +3,6 @@ using GlobalPayments.Api.PaymentMethods; using System; using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.ProPay.TestData { diff --git a/tests/GlobalPayments.Api.Tests/ProPay/TestData/TestFundsData.cs b/tests/GlobalPayments.Api.Tests/ProPay/TestData/TestFundsData.cs index 3eed52b7..394034bd 100644 --- a/tests/GlobalPayments.Api.Tests/ProPay/TestData/TestFundsData.cs +++ b/tests/GlobalPayments.Api.Tests/ProPay/TestData/TestFundsData.cs @@ -1,9 +1,6 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Entities.PayFac; using GlobalPayments.Api.PaymentMethods; -using System; -using System.Collections.Generic; -using System.Text; namespace GlobalPayments.Api.Tests.ProPay.TestData { diff --git a/tests/GlobalPayments.Api.Tests/Properties/AssemblyInfo.cs b/tests/GlobalPayments.Api.Tests/Properties/AssemblyInfo.cs index 38683e66..cd0acb0b 100644 --- a/tests/GlobalPayments.Api.Tests/Properties/AssemblyInfo.cs +++ b/tests/GlobalPayments.Api.Tests/Properties/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following diff --git a/tests/GlobalPayments.Api.Tests/Terminals/HPA/HpaDebitTests.cs b/tests/GlobalPayments.Api.Tests/Terminals/HPA/HpaDebitTests.cs index 37a1b77b..a6f84f18 100644 --- a/tests/GlobalPayments.Api.Tests/Terminals/HPA/HpaDebitTests.cs +++ b/tests/GlobalPayments.Api.Tests/Terminals/HPA/HpaDebitTests.cs @@ -2,7 +2,6 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Services; using GlobalPayments.Api.Terminals; -using GlobalPayments.Api.Utils; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace GlobalPayments.Api.Tests.Terminals.HPA { diff --git a/tests/GlobalPayments.Api.Tests/Terminals/HPA/HpaGiftTests.cs b/tests/GlobalPayments.Api.Tests/Terminals/HPA/HpaGiftTests.cs index 32671754..d9223639 100644 --- a/tests/GlobalPayments.Api.Tests/Terminals/HPA/HpaGiftTests.cs +++ b/tests/GlobalPayments.Api.Tests/Terminals/HPA/HpaGiftTests.cs @@ -2,7 +2,6 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Services; using GlobalPayments.Api.Terminals; -using GlobalPayments.Api.Utils; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace GlobalPayments.Api.Tests.Terminals.HPA { diff --git a/tests/GlobalPayments.Api.Tests/Terminals/Pax/PaxBatchTests.cs b/tests/GlobalPayments.Api.Tests/Terminals/Pax/PaxBatchTests.cs index e45620f6..08419a01 100644 --- a/tests/GlobalPayments.Api.Tests/Terminals/Pax/PaxBatchTests.cs +++ b/tests/GlobalPayments.Api.Tests/Terminals/Pax/PaxBatchTests.cs @@ -1,7 +1,6 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.Services; using GlobalPayments.Api.Terminals; -using GlobalPayments.Api.Terminals.Abstractions; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace GlobalPayments.Api.Tests.Terminals.Pax { diff --git a/tests/GlobalPayments.Api.Tests/Terminals/Pax/PaxLevel2Tests.cs b/tests/GlobalPayments.Api.Tests/Terminals/Pax/PaxLevel2Tests.cs index f347d89e..18307f35 100644 --- a/tests/GlobalPayments.Api.Tests/Terminals/Pax/PaxLevel2Tests.cs +++ b/tests/GlobalPayments.Api.Tests/Terminals/Pax/PaxLevel2Tests.cs @@ -1,5 +1,4 @@ -using System; -using GlobalPayments.Api.Entities; +using GlobalPayments.Api.Entities; using GlobalPayments.Api.Services; using GlobalPayments.Api.Terminals; using Microsoft.VisualStudio.TestTools.UnitTesting; diff --git a/tests/GlobalPayments.Api.Tests/TestData/TestCards.cs b/tests/GlobalPayments.Api.Tests/TestData/TestCards.cs index 1406f21d..288c0913 100644 --- a/tests/GlobalPayments.Api.Tests/TestData/TestCards.cs +++ b/tests/GlobalPayments.Api.Tests/TestData/TestCards.cs @@ -1,5 +1,4 @@ -using System; -using GlobalPayments.Api.Entities; +using GlobalPayments.Api.Entities; using GlobalPayments.Api.PaymentMethods; namespace GlobalPayments.Api.Tests.TestData { diff --git a/tests/GlobalPayments.Api.Tests/TransIT/TransitDebitTests.cs b/tests/GlobalPayments.Api.Tests/TransIT/TransitDebitTests.cs index 32644eda..9363066a 100644 --- a/tests/GlobalPayments.Api.Tests/TransIT/TransitDebitTests.cs +++ b/tests/GlobalPayments.Api.Tests/TransIT/TransitDebitTests.cs @@ -1,7 +1,6 @@ using GlobalPayments.Api.Entities; using GlobalPayments.Api.PaymentMethods; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; namespace GlobalPayments.Api.Tests.TransIT { [TestClass]