public bool ManageBug(int BudId,
                       DateTime Date,
                       int ProjectId,
                       string Bug,
                       string Class,
                       string Code,
                       string Method,
                       string ClassLibrary,
                       int LineNumber,
                       string IdentifiedBy,
                       byte[] Error,
                       int Mode)
 {
     try
     {
         int rs = bc.ManageBug(BudId,
                               Date,
                               ProjectId,
                               Bug,
                               Class,
                               Code,
                               Method,
                               ClassLibrary,
                               LineNumber,
                               IdentifiedBy,
                               Error,
                               Mode);
         if (rs > 0)
         {
             return(true);
         }
         else
         {
             return(false);
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }