public AccountService()
 {
     so        = new SocketsToDatabase();
     accounts  = new List <Account>();
     addresses = new List <Address>();
     bankInfos = new List <BankInfo>();
 }
 public OrderService()
 {
     so     = new SocketsToDatabase();
     orders = new List <Order>();
 }
 public IngredientService()
 {
     so          = new SocketsToDatabase();
     ingredients = new List <Ingredient>();
 }
 public RecipeService()
 {
     so          = new SocketsToDatabase();
     recipes     = new List <Recipe>();
     ingredients = new List <Ingredient>();
 }