コード例 #1
0
 public RecipesBsn()
 {
     recipesData = new RecipesEFData();
     if (Source.DataStorage == 1)
     {
         recipesData = new RecipesJSON();
     }
 }
コード例 #2
0
 protected AdminController(IRecipesData data) : base(data)
 {
 }
コード例 #3
0
 // GET: Base
 protected BaseController(IRecipesData data)
 {
     this.Data = data;
 }
コード例 #4
0
 public RecipesController(IRecipesData data) : base(data)
 {
 }
コード例 #5
0
 public HomeController(IRecipesData data) : base(data)
 {
 }
コード例 #6
0
 // GET: Admin/Categories
 public CategoriesController(IRecipesData data) : base(data)
 {
 }