コード例 #1
0
 public AdminController(IMemberBLL memberBLL, IFollowBLL followBLL, IFollowRecordBLL followRecordBLL, IInformationBLL informationBLL)
 {
     _memberBLL       = memberBLL;
     _followBLL       = followBLL;
     _followRecordBLL = followRecordBLL;
     _informationBLL  = informationBLL;
 }
コード例 #2
0
 /// <summary>
 /// 不提供文件名 仅仅是实例化 各个BLL
 /// </summary>
 /// <param name="memberBLL"></param>
 /// <param name="informationBLL"></param>
 /// <param name="followBLL"></param>
 /// <param name="followRecordBLL"></param>
 public ExcelManager(IMemberBLL memberBLL, IInformationBLL informationBLL, IFollowBLL followBLL, IFollowRecordBLL followRecordBLL)
 {
     _memberBLL       = memberBLL;
     _informationBLL  = informationBLL;
     _followBLL       = followBLL;
     _followRecordBLL = followRecordBLL;
 }
コード例 #3
0
 /// <summary>
 /// 需要提供完整的文件路径
 /// </summary>
 /// <param name="filename"></param>
 /// <param name="path"></param>
 /// <param name="memberBLL"></param>
 /// <param name="informationBLL"></param>
 /// <param name="followBLL"></param>
 /// <param name="followRecordBLL"></param>
 public ExcelManager(string filename, string path, IMemberBLL memberBLL, IInformationBLL informationBLL, IFollowBLL followBLL, IFollowRecordBLL followRecordBLL)
 {
     _filename        = path + filename;
     _memberBLL       = memberBLL;
     _informationBLL  = informationBLL;
     _followBLL       = followBLL;
     _followRecordBLL = followRecordBLL;
 }
コード例 #4
0
 /// <summary>
 /// 不需要提供完整的文件路径
 /// 默认文件路劲为 AppDomain.CurrentDomain.BaseDirectory + File/
 /// </summary>
 /// <param name="filename"></param>
 /// <param name="memberBLL"></param>
 /// <param name="informationBLL"></param>
 /// <param name="followBLL"></param>
 /// <param name="followRecordBLL"></param>
 public ExcelManager(string filename, IMemberBLL memberBLL, IInformationBLL informationBLL, IFollowBLL followBLL, IFollowRecordBLL followRecordBLL)
 {
     _filename        = AppDomain.CurrentDomain.BaseDirectory + "/File/" + filename;
     _memberBLL       = memberBLL;
     _followBLL       = followBLL;
     _followRecordBLL = followRecordBLL;
     _informationBLL  = informationBLL;
 }
コード例 #5
0
ファイル: CompetentController.cs プロジェクト: Dream2Sky/DCS
 public CompetentController(IMemberBLL memberBLL, UnderlingManager underlingManager,
                            ICustomItemBLL customItemBLL, IInformationBLL informationBLL,
                            ICustomItemValueBLL customItemValueBLL, ExcelManager excelManager, DataManager dataManager)
 {
     _memberBLL          = memberBLL;
     _underlingManager   = underlingManager;
     _customItemBLL      = customItemBLL;
     _informationBLL     = informationBLL;
     _customItemValueBLL = customItemValueBLL;
     _excelManager       = excelManager;
     _dataManager        = dataManager;
 }
コード例 #6
0
 public GeneralStaffController(ICustomItemValueBLL customItemValueBLL,
                               ICustomItemBLL customItemBLL, IInformationBLL informationBLL,
                               UnderlingManager underlingManager, IMemberBLL memberBLL,
                               DataManager dataManager, ExcelManager excelManager)
 {
     _customItemBLL      = customItemBLL;
     _customItemValueBLL = customItemValueBLL;
     _informationBLL     = informationBLL;
     _underlingManager   = underlingManager;
     _memberBLL          = memberBLL;
     _dataManager        = dataManager;
     _excelManager       = excelManager;
 }
コード例 #7
0
ファイル: DataManager.cs プロジェクト: Dream2Sky/DCS
 public DataManager(IInformationBLL informationBLL)
 {
     _informationBLL = informationBLL;
 }