Initial population
This commit is contained in:
30
JRCookbookBusiness/RecipeIngredientHeading.cs
Normal file
30
JRCookbookBusiness/RecipeIngredientHeading.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace JRCookbookBusiness
|
||||
{
|
||||
public class RecipeIngredientHeading : RecipeIngredient
|
||||
{
|
||||
|
||||
public RecipeIngredientHeading()
|
||||
{
|
||||
}
|
||||
|
||||
internal override void PopulateFromDataRow(DataRow dataRow)
|
||||
{
|
||||
InitializeAllFields();
|
||||
|
||||
base.PopulateFromDataRow(dataRow);
|
||||
|
||||
}
|
||||
|
||||
protected override void InitializeAllFields()
|
||||
{
|
||||
base.InitializeAllFields();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user