import { BankAccount, BankAccountTypeEnum } from "@/proxy/intranet/models"; export const mockBanks: BankAccount[] = [ { id: "1", accountCode: "BANKA001", bankName: "İş Bankası", branchName: "Levent Şubesi", accountNumber: "1234567890", iban: "TR120006400000112345678901", accountType: BankAccountTypeEnum.Current, currency: "TRY", balance: 125000, overdraftLimit: 50000, dailyTransferLimit: 100000, isActive: true, contactPerson: "Mehmet Ak", phoneNumber: "+90 212 555 1111", creationTime: new Date("2024-01-01"), lastModificationTime: new Date("2024-01-20"), swiftCode: "ISBKTRIS", isDefault: true, }, { id: "2", accountCode: "BANKA002", bankName: "Garanti BBVA", branchName: "Şişli Şubesi", accountNumber: "9876543210", iban: "TR980006200012600006298453", accountType: BankAccountTypeEnum.Deposit, currency: "USD", balance: 15000, overdraftLimit: 0, dailyTransferLimit: 50000, isActive: true, contactPerson: "Ayşe Yıldız", phoneNumber: "+90 212 555 2222", creationTime: new Date("2024-01-01"), lastModificationTime: new Date("2024-01-18"), swiftCode: "TGBATRIS", isDefault: false, }, ];