| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||||
| CategoryDao |
|
| 1.0;1 |
| 1 | package com.neidetcher.petunia.service; |
|
| 2 | ||
| 3 | public interface CategoryDao |
|
| 4 | { |
|
| 5 | ||
| 6 | public Category save(Category category); |
|
| 7 | ||
| 8 | public Category find(Integer id); |
|
| 9 | } |