コード例 #1
0
ファイル: ShowInfo.cs プロジェクト: himanshujoshi19/Test
 public int SelectAvailableSeats(String ShowAllocationID, String Location)
 {
     try
     {
         if (SecurityHeaderValidation.Validate(objSecurity))
         {
             return(VistaDAL.SelectAvailableSeats(ShowAllocationID, Location));
         }
     }
     catch (Exception ex)
     {
         Microsoft.Practices.EnterpriseLibrary.Logging.Logger.Write(ex.Message);
     }
     return(0);
 }