BudgetAnalyser.Engine.Services.WidgetService.Create C# (CSharp) Метод

Create() публичный Метод

Create a new widget with the given parameters. This is used to instantiate the IUserDefinedWidgets. These can only be created after receiving the application state.
public Create ( string fullName, string bucketCode ) : IUserDefinedWidget
fullName string The full type name of the widget type.
bucketCode string A unique identifier for the instance
Результат IUserDefinedWidget
        public IUserDefinedWidget Create(string fullName, string bucketCode)
        {
            return this.widgetRepo.Create(fullName, bucketCode);
        }