protected Logic() { DAL dal = DAL.Factory(); Create = new CreateLogic(dal); Edit = new EditLogic(dal); Find = new FindLogic(dal); FindAll = new FindAllLogic(dal); Remove = new RemoveLogic(dal); }
private Logic() { DAL dal = DAL.Factory();//TODO: inject repository Create = new CreateLogic(dal); Edit = new EditLogic(dal); Find = new FindLogic(dal); FindAll = new FindAllLogic(dal); Remove = new RemoveLogic(dal); }