BudgetAnalyser.Engine.Services.WidgetService.Create C# (CSharp) Méthode

Create() public méthode

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
Résultat IUserDefinedWidget
        public IUserDefinedWidget Create(string fullName, string bucketCode)
        {
            return this.widgetRepo.Create(fullName, bucketCode);
        }