コード例 #1
0
ファイル: DBReport.cs プロジェクト: alex765022/IBN
        public static IDataReader SearchChat(int iUserId, int iChatId, DateTime dtFrom, DateTime dtTo,
                                             string sKeyWord, int iOrder, int DefaultBias)
        {
            int origUserId = 0;

            if (iUserId != 0)
            {
                origUserId = DbHelper2.RunSpInteger("UserGetOriginalId",
                                                    DbHelper2.mp("@UserId", SqlDbType.Int, iUserId));
                if (origUserId == -1)
                {
                    origUserId = 0;
                }
            }
            return(DbHelper2.RunSpDataReader("ASP_SEARCH_CHAT",
                                             DbHelper2.mp("@User_id", SqlDbType.Int, origUserId),
                                             DbHelper2.mp("@Chat_id", SqlDbType.Int, iChatId),
                                             DbHelper2.mp("@DT_Begin", SqlDbType.DateTime, dtFrom),
                                             DbHelper2.mp("@DT_End", SqlDbType.DateTime, dtTo),
                                             DbHelper2.mp("@Keyword", SqlDbType.NVarChar, 50, sKeyWord),
                                             DbHelper2.mp("@Order", SqlDbType.Int, iOrder),
                                             DbHelper2.mp("@TimeOffset", SqlDbType.Int, DefaultBias * 60)));
        }
コード例 #2
0
 public static int Create(
     object ProjectId, int CreatorId, int ManagerId,
     string Title, string Description, string Location,
     DateTime CreationDate, DateTime StartDate, DateTime FinishDate,
     int PriorityId, int TypeId, int TaskTime,
     object contactUid,
     object orgUid)
 {
     return(DbHelper2.RunSpInteger("EventCreate",
                                   DbHelper2.mp("@ProjectId", SqlDbType.Int, ProjectId),
                                   DbHelper2.mp("@CreatorId", SqlDbType.Int, CreatorId),
                                   DbHelper2.mp("@ManagerId", SqlDbType.Int, ManagerId),
                                   DbHelper2.mp("@Title", SqlDbType.NVarChar, 255, Title),
                                   DbHelper2.mp("@Description", SqlDbType.NText, Description),
                                   DbHelper2.mp("@Location", SqlDbType.NVarChar, 1000, Location),
                                   DbHelper2.mp("@CreationDate", SqlDbType.DateTime, CreationDate),
                                   DbHelper2.mp("@StartDate", SqlDbType.DateTime, StartDate),
                                   DbHelper2.mp("@FinishDate", SqlDbType.DateTime, FinishDate),
                                   DbHelper2.mp("@PriorityId", SqlDbType.Int, PriorityId),
                                   DbHelper2.mp("@TypeId", SqlDbType.Int, TypeId),
                                   DbHelper2.mp("@TaskTime", SqlDbType.Int, TaskTime),
                                   DbHelper2.mp("@ContactUid", SqlDbType.UniqueIdentifier, contactUid),
                                   DbHelper2.mp("@OrgUid", SqlDbType.UniqueIdentifier, orgUid)));
 }
コード例 #3
0
ファイル: DbDocument2.cs プロジェクト: alex765022/IBN
 public static int UpdateManager(int documentId, int valueId)
 {
     return(DbHelper2.RunSpInteger("Act_DocumentUpdateManager",
                                   DbHelper2.mp("@DocumentId", SqlDbType.Int, documentId),
                                   DbHelper2.mp("@ValueId", SqlDbType.Int, valueId)));
 }
コード例 #4
0
 public static int GetSharingLevel(int UserId, int EventId)
 {
     return(DbHelper2.RunSpInteger("SharingGetLevelForEvent",
                                   DbHelper2.mp("@UserId", SqlDbType.Int, UserId),
                                   DbHelper2.mp("@EventId", SqlDbType.Int, EventId)));
 }
コード例 #5
0
 public static int GetStickedObjectsCount(int userId)
 {
     return(DbHelper2.RunSpInteger("StickedObjectsGetCount",
                                   DbHelper2.mp("@UserId", SqlDbType.Int, userId)));
 }
コード例 #6
0
 public static int GetCalendarByProject(int ProjectId)
 {
     return(DbHelper2.RunSpInteger("CalendarGetByProject",
                                   DbHelper2.mp("@ProjectId", SqlDbType.Int, ProjectId)));
 }
コード例 #7
0
ファイル: DBContentType.cs プロジェクト: alex765022/IBN
 public static int GetBigIconFileId(int ContentTypeId)
 {
     return(DbHelper2.RunSpInteger("ContentTypeGetBigIconFileId",
                                   DbHelper2.mp("@ContentTypeId", SqlDbType.Int, ContentTypeId)));
 }
コード例 #8
0
 public static int Create(string ContainerKey, string Name)
 {
     return(DbHelper2.RunSpInteger("fsc_ReportCreate",
                                   DbHelper2.mp("@ContainerKey", SqlDbType.NVarChar, 50, ContainerKey),
                                   DbHelper2.mp("@ReportName", SqlDbType.NVarChar, 255, Name)));
 }
コード例 #9
0
ファイル: DBReport.cs プロジェクト: alex765022/IBN
 public static int GetUsersCount()
 {
     return(DbHelper2.RunSpInteger("ASP_REP_GET_TOTAL_USERS"));
 }
コード例 #10
0
ファイル: DBReport.cs プロジェクト: alex765022/IBN
 public static int GetGroupsCount()
 {
     return(DbHelper2.RunSpInteger("ASP_REP_GET_TOTAL_GROUPS"));
 }
コード例 #11
0
ファイル: DBReport.cs プロジェクト: alex765022/IBN
 public static int GetOnlineUsersCount()
 {
     return(DbHelper2.RunSpInteger("ASP_REP_GET_ONLINE_USERS_COUNT"));
 }
コード例 #12
0
ファイル: DBReport.cs プロジェクト: alex765022/IBN
 public static int GetInActiveUsersCount()
 {
     return(DbHelper2.RunSpInteger("ASP_REP_GET_TOTAL_INACTIVE_USERS"));
 }
コード例 #13
0
 public static int MessageLogAdd(string subject, string body)
 {
     return(DbHelper2.RunSpInteger("Alert2MessageLogAdd",
                                   DbHelper2.mp("@Subject", SqlDbType.NVarChar, 1000, subject),
                                   DbHelper2.mp("@Body", SqlDbType.NText, body)));
 }
コード例 #14
0
 public static int GetAclIdByReportId(int ReportId)
 {
     return(DbHelper2.RunSpInteger("fsc_ReportAccessControlEntriesGetAclIdByReportId",
                                   DbHelper2.mp("@ReportId", SqlDbType.Int, ReportId)));
 }
コード例 #15
0
 /// <summary>
 /// Gets the security for user.
 /// </summary>
 /// <param name="ListId">The list id.</param>
 /// <param name="UserId">The user id.</param>
 /// <returns></returns>
 public static int GetSecurityForUser(int ListId, int UserId)
 {
     return(DbHelper2.RunSpInteger("ListInfoGetSecurityForUser",
                                   DbHelper2.mp("@ListId", SqlDbType.Int, ListId),
                                   DbHelper2.mp("@UserId", SqlDbType.Int, UserId)));
 }
コード例 #16
0
 public static int CheckChildren(int GroupId)
 {
     return(DbHelper2.RunSpInteger("GroupCheckChildren",
                                   DbHelper2.mp("@GroupId", SqlDbType.Int, GroupId)));
 }
コード例 #17
0
ファイル: DBFinance.cs プロジェクト: alex765022/IBN
 public static int GetParentAccountId(int AccountId)
 {
     return(DbHelper2.RunSpInteger("AccountGetParentId",
                                   DbHelper2.mp("@AccountId", SqlDbType.Int, AccountId)));
 }
コード例 #18
0
 public static int GetGroupForPartnerUser(int UserId)
 {
     return(DbHelper2.RunSpInteger("GroupGetForPartnerUser",
                                   DbHelper2.mp("@PrincipalId", SqlDbType.Int, UserId)));
 }
コード例 #19
0
 public static int CreateCategory(string Name)
 {
     return(DbHelper2.RunSpInteger("fsc_ReportCreateCategory",
                                   DbHelper2.mp("@Name", SqlDbType.NVarChar, 255, Name)));
 }
コード例 #20
0
 public static int GetParentGroup(int GroupId)
 {
     return(DbHelper2.RunSpInteger("GroupGetParent",
                                   DbHelper2.mp("@PrincipalId", SqlDbType.Int, GroupId)));
 }
コード例 #21
0
 public static int Create(string CalendarName, int TimeZoneId)
 {
     return(DbHelper2.RunSpInteger("CalendarCreate",
                                   DbHelper2.mp("@CalendarName", SqlDbType.NVarChar, 250, CalendarName),
                                   DbHelper2.mp("@TimeZoneId", SqlDbType.Int, TimeZoneId)));
 }
コード例 #22
0
 public static int GetOwnerIncidentId(int EMailMessageId)
 {
     return(DbHelper2.RunSpInteger("mc_EMailMessageGetOwnerIssueId", DbHelper2.mp("@EMailMessageId", SqlDbType.Int, EMailMessageId)));
 }
コード例 #23
0
 public static int GetUserCalendarByException(int ExceptionId)
 {
     return(DbHelper2.RunSpInteger("UserCalendarByExceptionGet",
                                   DbHelper2.mp("@ExceptionId", SqlDbType.Int, ExceptionId)));
 }
コード例 #24
0
 public static int GetEMailRouterPop3BoxIdByIssueId(int IncidentId)
 {
     return(DbHelper2.RunSpInteger("mc_EMailMessageGetEMailRouterPop3BoxIdByIssueId", DbHelper2.mp("@IncidentId", SqlDbType.Int, IncidentId)));
 }
コード例 #25
0
 public static int GetManager(int eventId)
 {
     return(DbHelper2.RunSpInteger("EventManagerGet",
                                   DbHelper2.mp("@EventId", SqlDbType.Int, eventId)));
 }
コード例 #26
0
ファイル: DbActiveDirectory.cs プロジェクト: alex765022/IBN
 public static int LocalAddressRangeAdd(string startAddress, string endAddress)
 {
     return(DbHelper2.RunSpInteger("LocalAddressRangeAdd",
                                   DbHelper2.mp("@StartAddress", SqlDbType.NVarChar, 32, startAddress),
                                   DbHelper2.mp("@EndAddress", SqlDbType.NVarChar, 32, endAddress)));
 }
コード例 #27
0
 public static int GetProject(int EventId)
 {
     return(DbHelper2.RunSpInteger("EventGetProject",
                                   DbHelper2.mp("@EventId", SqlDbType.Int, EventId)));
 }
コード例 #28
0
ファイル: DbCalendarEntry2.cs プロジェクト: alex765022/IBN
 public static int UpdatePriority(int eventId, int valueId)
 {
     return(DbHelper2.RunSpInteger("Act_EventUpdatePriority",
                                   DbHelper2.mp("@EventId", SqlDbType.Int, eventId),
                                   DbHelper2.mp("@ValueId", SqlDbType.Int, valueId)));
 }
コード例 #29
0
 public static int CheckForUnchangeableRoles(int UserId)
 {
     return(DbHelper2.RunSpInteger("EventsCheckForUnchangeableRoles",
                                   DbHelper2.mp("@UserId", SqlDbType.Int, UserId)));
 }
コード例 #30
0
ファイル: DbDocument2.cs プロジェクト: alex765022/IBN
 public static int UpdateTimeline(int documentId, int taskTime)
 {
     return(DbHelper2.RunSpInteger("Act_DocumentUpdateTimeline",
                                   DbHelper2.mp("@documentId", SqlDbType.Int, documentId),
                                   DbHelper2.mp("@taskTime", SqlDbType.Int, taskTime)));
 }