Пример #1
0
 public Dictionary <long, IList <TicketDashBoardReport_vw> > GetTicketDashBoardReport_vwListWithPagingAndCriteria(int?page, int?pageSize, string sortType, string sortby, Dictionary <string, object> criteria)
 {
     try
     {
         TicketSystemBC TicketSystemBC = new TicketSystemBC();
         return(TicketSystemBC.GetTicketDashBoardReport_vwListWithPagingAndCriteria(page, pageSize, sortby, sortType, criteria));
     }
     catch (Exception)
     {
         throw;
     }
 }
Пример #2
0
 public Dictionary <long, IList <Priority> > GetPriorityListWithPagingAndCriteria(int?page, int?pageSize, string sortby, string sortType, Dictionary <string, object> criteria)
 {
     try
     {
         TicketSystemBC TicketSystemBC = new TicketSystemBC();
         return(TicketSystemBC.GetPriorityListWithPagingAndCriteria(page, pageSize, sortby, sortType, criteria));
     }
     catch (Exception)
     {
         throw;
     }
     finally { }
 }
Пример #3
0
 public string SaveOrUpdateTicketSystem(TicketSystem TicketSystem)
 {
     try
     {
         TicketSystemBC TicketSystemBC = new TicketSystemBC();
         return(TicketSystemBC.SaveOrUpdateTicketSystem(TicketSystem));
     }
     catch (Exception)
     {
         throw;
     }
     finally { }
 }
Пример #4
0
 public bool DeleteTicketComments(long[] Ids)
 {
     try
     {
         TicketSystemBC TicketSystemBC = new TicketSystemBC();
         return(TicketSystemBC.DeleteTicketComments(Ids));
     }
     catch (Exception)
     {
         throw;
     }
     finally { }
 }
Пример #5
0
 public bool UpdateTicketStatus(long TicketId, string TicketStatus)
 {
     try
     {
         TicketSystemBC TicketSystemBC = new TicketSystemBC();
         return(TicketSystemBC.UpdateTicketStatus(TicketId, TicketStatus));
     }
     catch (Exception)
     {
         throw;
     }
     finally { }
 }
Пример #6
0
 public bool EditTicketNote(long id, string note)
 {
     try
     {
         TicketSystemBC TicketSystemBC = new TicketSystemBC();
         return(TicketSystemBC.EditTicketNote(id, note));
     }
     catch (Exception)
     {
         throw;
     }
     finally { }
 }
Пример #7
0
 public Dictionary <long, IList <TicketComments> > GetTicketCommentsListWithPaging(int?page, int?pagesize, string sortby, string sorttype, Dictionary <string, object> criteria)
 {
     try
     {
         TicketSystemBC TicketSystemBC = new TicketSystemBC();
         return(TicketSystemBC.GetTicketCommentsListWithPaging(page, pagesize, sortby, sorttype, criteria));
     }
     catch (Exception)
     {
         throw;
     }
     finally { }
 }
Пример #8
0
 public TicketSystem GetTicketSystemById(long Id)
 {
     try
     {
         TicketSystemBC TicketSystemBC = new TicketSystemBC();
         return(TicketSystemBC.GetTicketSystemById(Id));
     }
     catch (Exception)
     {
         throw;
     }
     finally { }
 }
Пример #9
0
 public IList <TicketComments> GetTicketCommentsByTicketId(long TicketId)
 {
     try
     {
         TicketSystemBC TicketSystemBC = new TicketSystemBC();
         return(TicketSystemBC.GetTicketCommentsByTicketId(TicketId));
     }
     catch (Exception)
     {
         throw;
     }
     finally { }
 }
Пример #10
0
 public long CreateOrUpdateTicketComments(TicketComments TicketComments)
 {
     try
     {
         TicketSystemBC TicketSystemBC = new TicketSystemBC();
         return(TicketSystemBC.CreateOrUpdateTicketComments(TicketComments));
     }
     catch (Exception)
     {
         throw;
     }
     finally { }
 }