Browse Source

first commit

Suraj Kumar Mandal 1 year ago
parent
commit
8d72d644cc

+ 23 - 0
Fiscus/Cells/TableView/CreateApplicantsTableViewCell.swift

@@ -0,0 +1,23 @@
+//
+//  CreateApplicantsTableViewCell.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 20/02/24.
+//
+
+import UIKit
+
+class CreateApplicantsTableViewCell: UITableViewCell {
+
+    override func awakeFromNib() {
+        super.awakeFromNib()
+        // Initialization code
+    }
+
+    override func setSelected(_ selected: Bool, animated: Bool) {
+        super.setSelected(selected, animated: animated)
+
+        // Configure the view for the selected state
+    }
+
+}

+ 23 - 0
Fiscus/Cells/TableView/UCCTableViewCell.swift

@@ -0,0 +1,23 @@
+//
+//  UCCTableViewCell.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 19/02/24.
+//
+
+import UIKit
+
+class UCCTableViewCell: UITableViewCell {
+
+    override func awakeFromNib() {
+        super.awakeFromNib()
+        // Initialization code
+    }
+
+    override func setSelected(_ selected: Bool, animated: Bool) {
+        super.setSelected(selected, animated: animated)
+
+        // Configure the view for the selected state
+    }
+
+}

+ 8 - 0
Fiscus/Extention/DispatchQueue+Extensions.swift

@@ -0,0 +1,8 @@
+//
+//  DispatchQueue+Extensions.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 29/11/23.
+//
+
+import Foundation

+ 8 - 0
Fiscus/Extention/UIColor+Heax.swift

@@ -0,0 +1,8 @@
+//
+//  UIColor+Heax.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 22/11/23.
+//
+
+import Foundation

+ 8 - 0
Fiscus/Library/PaddedLabel.swift

@@ -0,0 +1,8 @@
+//
+//  PaddedLabel.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 20/02/24.
+//
+
+import Foundation

+ 8 - 0
Fiscus/Library/SelectTextField.swift

@@ -0,0 +1,8 @@
+//
+//  SelectTextField.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 05/12/23.
+//
+
+import Foundation

+ 8 - 0
Fiscus/Model/ApplicantListModel.swift

@@ -0,0 +1,8 @@
+//
+//  ApplicantListModel.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 22/02/24.
+//
+
+import Foundation

+ 8 - 0
Fiscus/Model/BuySuccessfulModel.swift

@@ -0,0 +1,8 @@
+//
+//  BuySuccessfulModel.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 03/12/23.
+//
+
+import Foundation

+ 129 - 0
Fiscus/Model/FirstApplicantNameModel.swift

@@ -0,0 +1,129 @@
+//
+//  FirstApplicantName.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 20/02/24.
+//
+
+import Foundation
+
+// MARK: - FirstApplicantName
+struct FirstApplicantName: Codable {
+    let id: Int
+    let userID: JSONNull?
+    let firstApplicantNameUserID, advisorMasterID: Int
+    let salutation, firstName, middleName, lastName: String
+    let birthDate, dateOfBirth, gender, pan: String
+    let aadhar: String
+    let maritalStatus: Int
+    let maritalStatusDesc: String
+    let otherMaritalStatus: JSONNull?
+    let eduQualification: Int
+    let otherEduQualification: JSONNull?
+    let employmentType: Int
+    let otherEmploymentType: JSONNull?
+    let orgName: String
+    let loginUserName: JSONNull?
+    let loginPassword, currDesignation: String
+    let residentType: Int
+    let otherResidentType: JSONNull?
+    let countryOfResidence: Int
+    let retiredFlag, lastLoginTime, lastLogoutTime: String
+    let retirementAge, lifeExpectancy, riskProfileScore, olderRiskProfile: Int
+    let riskProfileName: JSONNull?
+    let activeFlag: String
+    let emailID, retirementStatus, mobile, name: JSONNull?
+    let familyMemberID, age: Int
+    let clientInfoAddEdit, clientInfoDelete, clientInfoView, budgetManagementView: JSONNull?
+    let financialPlanningAddEdit, financialPlanningView, goalPlanningAddEdit, goalPlanningView: JSONNull?
+    let investAddEdit, investView, mfBackOfficeView, portfolioManagementAddEdit: JSONNull?
+    let portfolioManagementView, role: JSONNull?
+    let finexaUser: String
+    let clientContactDTO, clientGuardianDTO, clientGuardianContactDTO, clientFamilyMemberDTO: JSONNull?
+    let subscribed: JSONNull?
+    let subscriptionDetails: Int
+    let subscriptionDescription, message1, message2, captchaToken: JSONNull?
+    let clientFamilyMembersDTO: [ClientFamilyMembersDTO]
+    let clientContactsDTO: [ClientContactsDTO]
+    let clientFamilyIncomeDTO, clientLifeExpDTO: JSONNull?
+    let lastUpdatedOn, createdOn: String
+    let userEmailID, masterID: JSONNull?
+    let clientFullName, residentTypeName: String
+    let clientGuardianID: Int
+    
+    enum CodingKeys: String, CodingKey {
+        case id, userID
+        case firstApplicantNameUserID = "userId"
+        case advisorMasterID, salutation, firstName, middleName, lastName, birthDate, dateOfBirth, gender, pan, aadhar, maritalStatus, maritalStatusDesc, otherMaritalStatus, eduQualification, otherEduQualification, employmentType, otherEmploymentType, orgName, loginUserName, loginPassword, currDesignation, residentType, otherResidentType, countryOfResidence, retiredFlag, lastLoginTime, lastLogoutTime, retirementAge, lifeExpectancy, riskProfileScore, olderRiskProfile, riskProfileName, activeFlag, emailID, retirementStatus, mobile, name
+        case familyMemberID = "familyMemberId"
+        case age, clientInfoAddEdit, clientInfoDelete, clientInfoView, budgetManagementView, financialPlanningAddEdit, financialPlanningView, goalPlanningAddEdit, goalPlanningView, investAddEdit, investView, mfBackOfficeView, portfolioManagementAddEdit, portfolioManagementView, role, finexaUser, clientContactDTO, clientGuardianDTO, clientGuardianContactDTO, clientFamilyMemberDTO, subscribed, subscriptionDetails, subscriptionDescription, message1, message2, captchaToken, clientFamilyMembersDTO, clientContactsDTO, clientFamilyIncomeDTO, clientLifeExpDTO, lastUpdatedOn, createdOn, userEmailID, masterID, clientFullName, residentTypeName
+        case clientGuardianID = "clientGuardianId"
+    }
+}
+
+// MARK: - ClientContactsDTO
+struct ClientContactsDTO: Codable {
+    let id: Int
+    let alternateEmail, correspondenceAddressLine1, correspondenceAddressLine2, correspondenceAddressLine3: String
+    let correspondenceCity: String
+    let correspondencePincode: Int
+    let correspondenceState: String
+    let address3DropID: Int
+    let countryCode, emailID: String
+    let emergencyContact, mobile: Int
+    let officeAddressLine1, officeAddressLine2, officeAddressLine3, officeCity: String
+    let officePincode: Int
+    let officeState: String
+    let address1DropID: Int
+    let permanentAddressLine1, permanentAddressLine2: String
+    let permanentAddressLine3: JSONNull?
+    let permanentCity: String
+    let permanentPincode: Int
+    let permanentState: String
+    let address2DropID, phone, clientID, lookupOfficeCountryID: Int
+    let lookupOfficeCountryName: JSONNull?
+    let lookupPermanentCountryID: Int
+    let lookupPermanentCountryName: JSONNull?
+    let lookupCorrespondenceCountryID: Int
+    let lookupCorrespondenceCountryName: JSONNull?
+    
+    enum CodingKeys: String, CodingKey {
+        case id, alternateEmail, correspondenceAddressLine1, correspondenceAddressLine2, correspondenceAddressLine3, correspondenceCity, correspondencePincode, correspondenceState
+        case address3DropID = "address3DropId"
+        case countryCode, emailID, emergencyContact, mobile, officeAddressLine1, officeAddressLine2, officeAddressLine3, officeCity, officePincode, officeState
+        case address1DropID = "address1DropId"
+        case permanentAddressLine1, permanentAddressLine2, permanentAddressLine3, permanentCity, permanentPincode, permanentState
+        case address2DropID = "address2DropId"
+        case phone
+        case clientID = "clientId"
+        case lookupOfficeCountryID = "lookupOfficeCountryId"
+        case lookupOfficeCountryName
+        case lookupPermanentCountryID = "lookupPermanentCountryId"
+        case lookupPermanentCountryName
+        case lookupCorrespondenceCountryID = "lookupCorrespondenceCountryId"
+        case lookupCorrespondenceCountryName
+    }
+}
+
+// MARK: - ClientFamilyMembersDTO
+struct ClientFamilyMembersDTO: Codable {
+    let id: Int
+    let firstName, middleName, lastName: String
+    let relationID: Int
+    let relationName: String
+    let otherRelation: JSONNull?
+    let birthDate, dateOfBirth, pan: String
+    let aadhar: String?
+    let dependentFlag, retiredFlag: String
+    let lifeExpectancy, retirementAge: Int?
+    let isTobaccoUser, isProperBMI, hasDiseaseHistory, hasNormalBP: String
+    let gender: JSONNull?
+    let clientID: Int
+    let totalAmount: JSONNull?
+    let fmFullName: String
+    let clientName, nboTaxStatus, lifeExpectancyManual: JSONNull?
+    let selfCheck, spouseCheck, sonCheck, daughterCheck: Bool
+    let fatherCheck, motherCheck, brotherCheck, sisterCheck: Bool
+    let otherCheck, headChangeStatus: Bool
+    let headChangeError: JSONNull?
+}

+ 8 - 0
Fiscus/Model/STPAddToCart.swift

@@ -0,0 +1,8 @@
+//
+//  STPAddToCart.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 15/02/24.
+//
+
+import Foundation

+ 8 - 0
Fiscus/Model/SWPAddToCart.swift

@@ -0,0 +1,8 @@
+//
+//  SWPAddToCart.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 27/09/23.
+//
+
+import Foundation

+ 8 - 0
Fiscus/Model/SchemeDetailsModel.swift

@@ -0,0 +1,8 @@
+//
+//  SchemeDetailsModel.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 01/12/23.
+//
+
+import Foundation

+ 29 - 0
Fiscus/View Controller/AddApplicantViewController.swift

@@ -0,0 +1,29 @@
+//
+//  AddApplicantViewController.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 21/02/24.
+//
+
+import UIKit
+
+class AddApplicantViewController: UIViewController {
+
+    override func viewDidLoad() {
+        super.viewDidLoad()
+
+        // Do any additional setup after loading the view.
+    }
+    
+
+    /*
+    // MARK: - Navigation
+
+    // In a storyboard-based application, you will often want to do a little preparation before navigation
+    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
+        // Get the new view controller using segue.destination.
+        // Pass the selected object to the new view controller.
+    }
+    */
+
+}

+ 29 - 0
Fiscus/View Controller/CreateUCCViewController.swift

@@ -0,0 +1,29 @@
+//
+//  CreateUCCViewController.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 19/02/24.
+//
+
+import UIKit
+
+class CreateUCCViewController: UIViewController {
+
+    override func viewDidLoad() {
+        super.viewDidLoad()
+
+        // Do any additional setup after loading the view.
+    }
+    
+
+    /*
+    // MARK: - Navigation
+
+    // In a storyboard-based application, you will often want to do a little preparation before navigation
+    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
+        // Get the new view controller using segue.destination.
+        // Pass the selected object to the new view controller.
+    }
+    */
+
+}

+ 29 - 0
Fiscus/View Controller/STPViewController.swift

@@ -0,0 +1,29 @@
+//
+//  STPViewController.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 14/02/24.
+//
+
+import UIKit
+
+class STPViewController: UIViewController {
+
+    override func viewDidLoad() {
+        super.viewDidLoad()
+
+        // Do any additional setup after loading the view.
+    }
+    
+
+    /*
+    // MARK: - Navigation
+
+    // In a storyboard-based application, you will often want to do a little preparation before navigation
+    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
+        // Get the new view controller using segue.destination.
+        // Pass the selected object to the new view controller.
+    }
+    */
+
+}

+ 29 - 0
Fiscus/View Controller/ViewUCCViewController.swift

@@ -0,0 +1,29 @@
+//
+//  ViewUCCViewController.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 20/02/24.
+//
+
+import UIKit
+
+class ViewUCCViewController: UIViewController {
+
+    override func viewDidLoad() {
+        super.viewDidLoad()
+
+        // Do any additional setup after loading the view.
+    }
+    
+
+    /*
+    // MARK: - Navigation
+
+    // In a storyboard-based application, you will often want to do a little preparation before navigation
+    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
+        // Get the new view controller using segue.destination.
+        // Pass the selected object to the new view controller.
+    }
+    */
+
+}

+ 8 - 0
Fiscus/View Model/AddApplicantViewModel.swift

@@ -0,0 +1,8 @@
+//
+//  AddApplicantViewModel.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 21/02/24.
+//
+
+import Foundation

+ 8 - 0
Fiscus/View Model/CreateUCCViewModel.swift

@@ -0,0 +1,8 @@
+//
+//  CreateUCCViewModel.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 20/02/24.
+//
+
+import Foundation

+ 8 - 0
Fiscus/View Model/STPViewModel.swift

@@ -0,0 +1,8 @@
+//
+//  STPViewModel.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 14/02/24.
+//
+
+import Foundation

+ 8 - 0
Fiscus/View Model/SWPViewModel.swift

@@ -0,0 +1,8 @@
+//
+//  SWPViewModel.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 26/09/23.
+//
+
+import Foundation

+ 8 - 0
Fiscus/View Model/ViewUCCViewModel.swift

@@ -0,0 +1,8 @@
+//
+//  ViewUCCViewModel.swift
+//  Fiscus
+//
+//  Created by Suraj Kumar Mandal on 20/02/24.
+//
+
+import Foundation

+ 0 - 0
README.md