Interface IKanbanConfigurationRepository
Configuration repository definition
Namespace: Simplic.Kanban
Assembly: Simplic.Kanban.dll
Syntax
public interface IKanbanConfigurationRepository
Methods
| Improve this Doc View SourceGetByName(String)
Get kanban configuration by name
Declaration
KanbanConfiguration GetByName(string internName)
Parameters
Type | Name | Description |
---|---|---|
System.String | internName | Internal kanban name |
Returns
Type | Description |
---|---|
KanbanConfiguration | Kanban instance |
GetKanbanIdByName(String)
Get kanban board by id
Declaration
Guid? GetKanbanIdByName(string kanbanName)
Parameters
Type | Name | Description |
---|---|---|
System.String | kanbanName | Kanban name |
Returns
Type | Description |
---|---|
System.Nullable<System.Guid> | Kanban id |
GetKanbanNameById(Guid)
Gets the kanban board name by its id
Declaration
string GetKanbanNameById(Guid kanbanId)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | kanbanId | Unique board id |
Returns
Type | Description |
---|---|
System.String | Internal kanban board name |
GetPipelineIdByName(String, String)
Get kanban board by id
Declaration
Guid? GetPipelineIdByName(string kanbanName, string pipelineName)
Parameters
Type | Name | Description |
---|---|---|
System.String | kanbanName | Kanban name |
System.String | pipelineName | Pipeline intern name |
Returns
Type | Description |
---|---|
System.Nullable<System.Guid> | Pipeline id |
GetPipelineNameById(Guid, Guid)
Gets the pipeline name by its id
Declaration
string GetPipelineNameById(Guid kanbanId, Guid pipelineId)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | kanbanId | Unique kanban id |
System.Guid | pipelineId | Pipeline id |
Returns
Type | Description |
---|---|
System.String | Return the intern pipeline name if exists |