public IntegrationBranchModel(string branchName, string branchSerial, PartyIdModel branchIdentity, string licenseNumber, IntegrationCityModel city)
 {
     BranchName     = branchName;
     BranchSerial   = branchSerial;
     BranchIdentity = branchIdentity;
     LicenseNumber  = licenseNumber;
     City           = city;
 }
Example #2
0
 public PartyModel(string fillNameAr, PartyIdModel partyId, OrganizationModel organization)
 {
     FillNameAr   = fillNameAr;
     PartyId      = partyId;
     Organization = organization;
 }