Files
Backend-Api/0_Framework/Application/StaticWorkshopAccounts.cs
2025-04-13 23:21:45 +03:30

32 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
namespace _0_Framework.Application;
public static class StaticWorkshopAccounts
{
/// <summary>
/// لیستی آی دی نقش هایی که در زمان ساخت یا ویرایش کارگاه استفاده می شوند
/// 3 : قرارداد ارشد
/// 5 : قرارداد ساده
/// 7 : بیمه ارشد
/// 8 : بیمه ساده
/// </summary>
public static List<long> SelectedAccountsRoleIds = [3, 5, 7, 8];
/// <summary>
/// لیست اکانتهایی که به همه کارگاه ها باید دسترسی داشته باشند
/// 2 - صادق فرخی
/// 3 - میلاد مصباح
/// 380 - افروز نظری
/// 381 - مهدی قربانی
/// 392 - عمار حسن دوست
/// </summary>
public static List<long> StaticAccountIds = [2, 3, 380, 381, 392];
/// <summary>
/// این تاریخ در جدول اکانت لفت ورک به این معنیست
/// که کاربر همچنان به کارگاه دسترسی دارد
/// </summary>
public static DateTime ContinuesWorkingDate = new DateTime(2150, 1, 1);
}