public DateTimeFormatPart(Dictionary <string, ITimeZoneTO> timeZones)
 {
     _timeZones                = timeZones;
     DateTimeFormatsParts      = new Dictionary <string, IDateTimeFormatPartTO>();
     DateTimeFormatPartOptions = new Dictionary <string, List <IDateTimeFormatPartOptionTO> >();
     _assignManager            = new AssignManager(_timeZones);
 }
Ejemplo n.º 2
0
 public TimeFormatPartBuilder(Dictionary <string, ITimeZoneTO> timeZones)
 {
     _timeZones     = timeZones;
     _assignManager = new AssignManager(_timeZones);
 }
Ejemplo n.º 3
0
    static void Create()
    {
        GameObject assignManager = new GameObject("AssignManager");

        s_Instance = assignManager.AddComponent <AssignManager>();
    }