public SLADetail GetSLADetail(ISLA SLA, int TenantID, int SLAID) { _SLARepository = SLA; return(_SLARepository.GetSLADetail(TenantID, SLAID)); }
public bool UpdateSLADetails(ISLA SLA, SLADetail sLADetail, int TenantID, int UserID) { _SLARepository = SLA; return(_SLARepository.UpdateSLADetails(sLADetail, TenantID, UserID)); }
/// <summary> /// Search By Category /// </summary> /// <param name=""></param> /// <param name=""></param> /// <returns></returns> public List <SLAStatus> GetSLAStatusList(ISLA SLA, int TenantId) { _SLARepository = SLA; return(_SLARepository.GetSLAStatusList(TenantId)); }
public List <IssueTypeList> SearchIssueType(ISLA SLA, int TenantId, string SearchText) { _SLARepository = SLA; return(_SLARepository.SearchIssueType(TenantId, SearchText)); }
public int DeleteSLA(ISLA SLA, int tenantID, int SLAID) { _SLA = SLA; return(_SLA.DeleteSLA(tenantID, SLAID)); }
public List <SLAResponseModel> SLAList(ISLA SLA, int TenantID, int SLAFor) { _SLA = SLA; return(_SLA.SLAList(TenantID, SLAFor)); }
public int UpdateSLA(ISLA SLA, int tenantID, int SLAID, int IssuetypeID, bool isActive, int modifiedBy) { _SLA = SLA; return(_SLA.UpdateSLA(SLAID, tenantID, IssuetypeID, isActive, modifiedBy)); }
public int InsertSLA(ISLA SLA, SLAModel SLAm) { _SLA = SLA; return(_SLA.InsertSLA(SLAm)); }
public List <string> SLABulkUpload(ISLA SLA, int TenantID, int CreatedBy, int SLAFor, DataSet DataSetCSV) { _SLA = SLA; return(_SLA.BulkUploadSLA(TenantID, CreatedBy, SLAFor, DataSetCSV)); }
public List <IssueTypeList> BindIssueTypeList(ISLA SLA, int tenantID, string SearchText) { _SLA = SLA; return(_SLA.BindIssueTypeList(tenantID, SearchText)); }
public int SLABulkUpload(ISLA SLA, int TenantID, int CreatedBy, DataSet DataSetCSV) { _SLA = SLA; return(_SLA.BulkUploadSLA(TenantID, CreatedBy, DataSetCSV)); }