示例#1
0
		public SettledController(ISettledBetService settledBetService, IAppSettings appSettings)
		{
			_settledBetService = settledBetService;
			_path = appSettings.GetSettledFilePath();
		}
示例#2
0
		public UnsettledController(IUnsettledBetService unsettledBetService, IAppSettings appSettings)
		{
			_unsettledBetService = unsettledBetService;
			_unsettledBetService.UnsettledFilePath = appSettings.GetUnsettledFilePath();
			_unsettledBetService.SettledFilePath = appSettings.GetSettledFilePath();
		}