public IBettingAccount New()
        {
            var newAccount = new DataModel.Bookmaker();

            this.dataContext.Accounts.Add(newAccount);

            return(new BookmakerDto(newAccount));
        }
 public BookmakerDto(Bookmaker bookmaker) : base(bookmaker)
 {
     this.bookmaker = bookmaker;
 }