Exemple #1
0
 public List <CrewImmigration> InsertCrewImmigration(List <CrewImmigration> crewVerification)
 {
     try
     {
         ImmigrationDAL DAL = new ImmigrationDAL();
         return(DAL.InsertCrewImmigration(crewVerification));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemple #2
0
 public void InsertQRCode(List <SeafarerImage> SeafarerImage)
 {
     try
     {
         ImmigrationDAL DAL = new ImmigrationDAL();
         DAL.InsertQRCode(SeafarerImage);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemple #3
0
 public List <CrewImmigration> CrewImmigration(short LoadType, long SeafarerID, long TravelReqID, string LOEControlNumber, string UserID)
 {
     try
     {
         ImmigrationDAL DAL = new ImmigrationDAL();
         return(DAL.CrewImmigration(LoadType, SeafarerID, TravelReqID, LOEControlNumber, UserID));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }