changed all lambda experssion variables to z from various where appropriate
This commit is contained in:
@@ -28,7 +28,7 @@ namespace AyaNova.Util
|
||||
if (global == null)
|
||||
{
|
||||
//fetch or create as not provided (meaning this was called from Startup.cs)
|
||||
global = ct.GlobalBizSettings.FirstOrDefault(m => m.Id == 1);
|
||||
global = ct.GlobalBizSettings.FirstOrDefault(z => z.Id == 1);
|
||||
if (global == null)
|
||||
{
|
||||
global = new GlobalBizSettings();
|
||||
|
||||
Reference in New Issue
Block a user