Book Image

SignalR Blueprints

By : Einar Ingerbrigsten
Book Image

SignalR Blueprints

By: Einar Ingerbrigsten

Overview of this book

Table of Contents (18 chapters)
SignalR Blueprints
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
9
Debugging or Troubleshooting
Index

Accounts overview


Now that we have our basic structure in place, we can start creating the first feature: the overview of the accounts in the bank. We're not implementing any user authentication, as this is something that we've covered earlier. This could be reused or, implemented here. So, the accounts are not linked to a user but are considered global. Obviously, you would link these to a user and secure it in a real-world scenario.

Note

Health warning: In this sample, we're going to go against my own advice about how to structure things. We're going to create one project only and not divide things into assemblies. This is due to the interest of saving pages and the division is something you'd do in a real project, but it does not serve a direct purpose here. Every time there is a separate project, I'll mention it.

Concepts

An important part of modeling the domain is finding the concepts you have; the concepts we're talking about at this stage are typically the nouns in your domain. Once found...