/// <summary>
 /// Deletes cost type specified by id
 /// </summary>
 /// <param name="costTypeId">Unique cost type id</param>
 public void DeleteItemType(Guid costTypeId)
 {
     _costTypeService.DeleteCostType(costTypeId);
 }