Example #1
0
 //public string DelDocument(int Projectid)
 //{
 //    DLProject dlObjDelDoc = new DLProject();
 //    try
 //    {
 //        Result = dlObjDelDoc.DelDocument(Projectid );
 //    }
 //    catch(Exception ex)
 //    {
 //        Result = ex.Message.ToString();
 //    }
 //    finally
 //    {
 //        dlObjDelDoc = null;
 //    }
 //    return Result;
 //}
 public void delDocOnProject1(int intProjectId)
 {
     DLProject dlc = new DLProject();
        try
        {
        dlc.delDocOnProject1(intProjectId);
        }
        catch
        {
        throw;
        }
        finally
        {
        dlc = null;
        }
 }