Example #1
0
        public void Insert(string AssemblyReportId, string ReportName, string SDLLname, string SAssemblyName, string Desc)
        {
            LAssemblyReport item = new LAssemblyReport();

            item.AssemblyReportId = AssemblyReportId;

            item.ReportName = ReportName;

            item.SDLLname = SDLLname;

            item.SAssemblyName = SAssemblyName;

            item.Desc = Desc;


            item.Save(UserName);
        }
Example #2
0
        public void Update(string AssemblyReportId, string ReportName, string SDLLname, string SAssemblyName, string Desc)
        {
            LAssemblyReport item = new LAssemblyReport();

            item.MarkOld();
            item.IsLoaded = true;

            item.AssemblyReportId = AssemblyReportId;

            item.ReportName = ReportName;

            item.SDLLname = SDLLname;

            item.SAssemblyName = SAssemblyName;

            item.Desc = Desc;

            item.Save(UserName);
        }
Example #3
0
 public bool Destroy(object AssemblyReportId)
 {
     return(LAssemblyReport.Destroy(AssemblyReportId) == 1);
 }
Example #4
0
 public bool Delete(object AssemblyReportId)
 {
     return(LAssemblyReport.Delete(AssemblyReportId) == 1);
 }