コード例 #1
0
        public ServiceAccess(Current.GetTicket getTicket, Current.GetUrl getUrl)
        {
            var repos = new Repos(getUrl);

            BaseMove = new BaseMoveSaverService(this, repos);

            Safe   = new SafeService(this, repos);
            Admin  = new AdminService(this, repos);
            Money  = new MoneyService(this, repos);
            Robot  = new RobotService(this, repos);
            Report = new ReportService(this, repos);

            Current = new Current(Safe, getTicket);
        }
コード例 #2
0
 public MoveRepository(Current.GetUrl getUrl)
 {
     this.getUrl = getUrl;
 }
コード例 #3
0
ファイル: SecurityRepository.cs プロジェクト: darakeon/dfm
 public SecurityRepository(Current.GetUrl getUrl)
 {
     this.getUrl = getUrl;
 }
コード例 #4
0
ファイル: WipeRepository.cs プロジェクト: darakeon/dfm
 public WipeRepository(Repos repos, Current.GetUrl getUrl)
 {
     this.repos  = repos;
     this.getUrl = getUrl;
 }
コード例 #5
0
 public ControlRepository(Current.GetUrl getUrl)
 {
     this.getUrl = getUrl;
 }